45 lines
1.3 KiB
JavaScript
Raw Normal View History

2017-11-16 16:58:45 +01:00
'use strict';
const _ = require('lodash');
const getProviderConfig = () => {
return strapi.plugins.email.config;
};
2017-11-16 16:58:45 +01:00
const send = async options => {
return strapi.plugins.email.provider.send(options);
};
/**
* fill subject, text and html using lodash template
* @param {object} emailOptions - to, from and replyto...
* @param {object} emailTemplate - object containing attributes to fill
* @param {object} data - data used to fill the template
* @returns {{ subject, text, subject }}
*/
const sendTemplatedEmail = (emailOptions = {}, emailTemplate = {}, data = {}) => {
const attributes = ['subject', 'text', 'html'];
const missingAttributes = _.difference(attributes, Object.keys(emailTemplate));
if (missingAttributes.length > 0) {
throw new Error(
`Following attributes are missing from your email template : ${missingAttributes.join(', ')}`
);
}
const templatedAttributes = attributes.reduce(
(compiled, attribute) =>
emailTemplate[attribute]
? Object.assign(compiled, { [attribute]: _.template(emailTemplate[attribute])(data) })
: compiled,
{}
);
return strapi.plugins.email.provider.send({ ...emailOptions, ...templatedAttributes });
};
2017-11-16 16:58:45 +01:00
module.exports = {
2018-08-23 18:28:13 +02:00
getProviderConfig,
send,
sendTemplatedEmail,
2017-11-16 16:58:45 +01:00
};