We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 68c7a39 + 52d477d commit 6f46258Copy full SHA for 6f46258
modules/smtp/js_modules/route_handlers.js
@@ -131,7 +131,11 @@ function applySmtpComposePageHandlers() {
131
132
async function handleSendAnyway() {
133
if ($('.saving_draft').val() !== '0') {
134
- Hm_Notices.show([hm_trans('Please wait, sending message...')]);
+ if ($('.nexter_input').val()) {
135
+ Hm_Notices.show([hm_trans('Please wait, message scheduling in progress...')]);
136
+ } else {
137
+ Hm_Notices.show([hm_trans('Please wait, sending message...')]);
138
+ }
139
await waitForValueChange('.saving_draft', '0');
140
}
141
0 commit comments