4ac88dce10
* refactored `core/frontend/apps` to destructure common imports * refactored `core/frontend/services/{apps, redirects, routing}` to destructure common imports * refactored `core/frontend/services/settings` to destructure common imports * refactored remaining `core/frontend/services` to destructure common imports * refactored `core/server/adapters` to destructure common imports * refactored `core/server/data/{db, exporter, schema, validation}` to destructure common imports * refactored `core/server/data/importer` to destructure common imports * refactored `core/server/models/{base, plugins, relations}` to destructure common imports * refactored remaining `core/server/models` to destructure common imports * refactored `core/server/api/canary/utils/serializers/output` to destructure common imports * refactored remaining `core/server/api/canary/utils` to destructure common imports * refactored remaining `core/server/api/canary` to destructure common imports * refactored `core/server/api/shared` to destructure common imports * refactored `core/server/api/v2/utils` to destructure common imports * refactored remaining `core/server/api/v2` to destructure common imports * refactored `core/frontend/meta` to destructure common imports * fixed some tests referencing `common.errors` instead of `@tryghost/errors` - Not all of them need to be updated; only updating the ones that are causing failures * fixed errors import being shadowed by local scope
61 lines
1.7 KiB
JavaScript
61 lines
1.7 KiB
JavaScript
const Promise = require('bluebird');
|
|
const {i18n} = require('../../lib/common');
|
|
const mailService = require('../../services/mail');
|
|
const api = require('./');
|
|
let mailer;
|
|
let _private = {};
|
|
|
|
_private.sendMail = (object) => {
|
|
if (!(mailer instanceof mailService.GhostMailer)) {
|
|
mailer = new mailService.GhostMailer();
|
|
}
|
|
|
|
return mailer.send(object.mail[0].message).catch((err) => {
|
|
if (mailer.state.usingDirect) {
|
|
api.notifications.add(
|
|
{
|
|
notifications: [{
|
|
type: 'warn',
|
|
message: [
|
|
i18n.t('warnings.index.unableToSendEmail'),
|
|
i18n.t('common.seeLinkForInstructions', {link: 'https://ghost.org/docs/concepts/config/#mail'})
|
|
].join(' ')
|
|
}]
|
|
},
|
|
{context: {internal: true}}
|
|
);
|
|
}
|
|
|
|
return Promise.reject(err);
|
|
});
|
|
};
|
|
|
|
module.exports = {
|
|
docName: 'mail',
|
|
|
|
send: {
|
|
permissions: true,
|
|
query(frame) {
|
|
return _private.sendMail(frame.data);
|
|
}
|
|
},
|
|
|
|
sendTest(frame) {
|
|
return mailService.utils.generateContent({template: 'test'})
|
|
.then((content) => {
|
|
const payload = {
|
|
mail: [{
|
|
message: {
|
|
to: frame.user.get('email'),
|
|
subject: i18n.t('common.api.mail.testGhostEmail'),
|
|
html: content.html,
|
|
text: content.text
|
|
}
|
|
}]
|
|
};
|
|
|
|
return _private.sendMail(payload);
|
|
});
|
|
}
|
|
};
|