diff --git a/ghost/admin/app/services/feature.js b/ghost/admin/app/services/feature.js index b924856b74..1fad5be987 100644 --- a/ghost/admin/app/services/feature.js +++ b/ghost/admin/app/services/feature.js @@ -66,6 +66,7 @@ export default class FeatureService extends Service { @feature('emailStability') emailStability; @feature('webmentions') webmentions; @feature('outboundLinkTagging') outboundLinkTagging; + @feature('emailErrors') emailErrors; _user = null; diff --git a/ghost/admin/app/templates/settings/labs.hbs b/ghost/admin/app/templates/settings/labs.hbs index 932116aeea..c3b746d231 100644 --- a/ghost/admin/app/templates/settings/labs.hbs +++ b/ghost/admin/app/templates/settings/labs.hbs @@ -239,6 +239,19 @@ +
+
+
+

Show email errors

+

+ This makes email errors visible in the UI. +

+
+
+ +
+
+
{{/if}} diff --git a/ghost/core/core/server/api/endpoints/utils/serializers/output/mappers/emails.js b/ghost/core/core/server/api/endpoints/utils/serializers/output/mappers/emails.js index bb7ceeee1e..fe3e3edb0d 100644 --- a/ghost/core/core/server/api/endpoints/utils/serializers/output/mappers/emails.js +++ b/ghost/core/core/server/api/endpoints/utils/serializers/output/mappers/emails.js @@ -1,4 +1,6 @@ const mega = require('../../../../../../services/mega'); +const labs = require('../../../../../../../shared/labs'); +const config = require('../../../../../../../shared/config'); module.exports = (model, frame) => { const jsonModel = model.toJSON ? model.toJSON(frame.options) : model; @@ -13,5 +15,11 @@ module.exports = (model, frame) => { ); }); + if (!labs.isSet('emailErrors') && !!(config.get('bulkEmail') && config.get('bulkEmail').mailgun)) { + if (jsonModel.status === 'failed') { + jsonModel.status = 'submitted'; + } + } + return jsonModel; }; diff --git a/ghost/core/core/shared/labs.js b/ghost/core/core/shared/labs.js index 6d6e1ac39f..670eac2a45 100644 --- a/ghost/core/core/shared/labs.js +++ b/ghost/core/core/shared/labs.js @@ -26,7 +26,8 @@ const GA_FEATURES = [ // NOTE: this allowlist is meant to be used to filter out any unexpected // input for the "labs" setting value const BETA_FEATURES = [ - 'activitypub' + 'activitypub', + 'emailErrors' ]; const ALPHA_FEATURES = [