Pierre Noël de395dfc88 refacto
Signed-off-by: Pierre Noël <petersg83@gmail.com>
2020-07-08 11:41:19 +02:00

45 lines
1.3 KiB
JavaScript

'use strict';
const _ = require('lodash');
const getProviderConfig = () => {
return strapi.plugins.email.config;
};
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 });
};
module.exports = {
getProviderConfig,
send,
sendTemplatedEmail,
};