diff --git a/ghost/admin/app/components/gh-post-settings-menu/email.hbs b/ghost/admin/app/components/gh-post-settings-menu/email.hbs index b26e0af596..ffca058f17 100644 --- a/ghost/admin/app/components/gh-post-settings-menu/email.hbs +++ b/ghost/admin/app/components/gh-post-settings-menu/email.hbs @@ -51,9 +51,9 @@
{{#if this.session.user.isOwner}}
- Email failed to send when publishing this post. Please
diff --git a/ghost/admin/app/components/gh-post-settings-menu/email.js b/ghost/admin/app/components/gh-post-settings-menu/email.js index c029f7f163..9b3e9a55fe 100644 --- a/ghost/admin/app/components/gh-post-settings-menu/email.js +++ b/ghost/admin/app/components/gh-post-settings-menu/email.js @@ -75,7 +75,7 @@ export default Component.extend({ return false; } if (!this.settings.get('bulkEmailSettings.isEnabled')) { - this.set('sendTestEmailError', 'Please check your Mailgun configuration'); + this.set('sendTestEmailError', 'Please verify your email settings'); return false; } this.set('sendTestEmailError', ''); @@ -88,7 +88,7 @@ export default Component.extend({ return yield this.ajax.post(url, options); } catch (error) { if (error) { - this.set('sendTestEmailError', 'Error sending mail, please check your Mailgun configuration'); + this.set('sendTestEmailError', 'Email could not be sent, verify mail settings'); } } }).drop(), diff --git a/ghost/admin/app/components/modal-confirm-email-send.hbs b/ghost/admin/app/components/modal-confirm-email-send.hbs index e346132e3d..3e45c44aee 100644 --- a/ghost/admin/app/components/modal-confirm-email-send.hbs +++ b/ghost/admin/app/components/modal-confirm-email-send.hbs @@ -33,9 +33,9 @@
Your post has been published but the email failed to send. Please
Your post has been published but the email failed to send. Please verify your email settings if the error persists.
{{else}} -Your post has been published but the email failed to send. Please check your Mailgun configuration if the error persists.
+Your post has been published but the email failed to send. Please verify your email settings if the error persists.
{{/if}}