2019-11-13 17:52:23 +07:00
|
|
|
const _ = require('lodash');
|
2019-11-04 12:36:10 +07:00
|
|
|
const common = require('../../lib/common');
|
2019-11-13 09:26:31 +05:30
|
|
|
const mailgunProvider = require('./mailgun');
|
|
|
|
const configService = require('../../config');
|
2019-11-04 12:36:10 +07:00
|
|
|
|
2019-11-04 17:24:02 +07:00
|
|
|
/**
|
2019-11-04 12:36:10 +07:00
|
|
|
* An email address
|
|
|
|
* @typedef { string } EmailAddress
|
|
|
|
*/
|
|
|
|
|
2019-11-04 17:24:02 +07:00
|
|
|
/**
|
2019-11-04 12:36:10 +07:00
|
|
|
* An object representing an email to send
|
|
|
|
* @typedef { Object } Email
|
|
|
|
* @property { string } html - The html content of the email
|
2019-11-04 12:36:10 +07:00
|
|
|
* @property { string } subject - The subject of the email
|
2019-11-04 12:36:10 +07:00
|
|
|
*/
|
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
/**
|
|
|
|
* @param {Email} message - The message to send
|
|
|
|
* @param {[EmailAddress]} recipients - the recipients to send the email to
|
2019-11-06 17:50:41 +07:00
|
|
|
* @param {[object]} recipientData - list of data keyed by email to inject into the email
|
2019-11-13 17:52:23 +07:00
|
|
|
* @returns {Promise<Array<object>>} An array of promises representing the success of the batch email sending
|
2019-11-04 12:36:10 +07:00
|
|
|
*/
|
2019-11-13 17:01:37 +05:30
|
|
|
async send(message, recipients, recipientData = {}) {
|
2019-11-13 17:52:23 +07:00
|
|
|
let BATCH_SIZE = 1000;
|
2019-11-14 10:45:26 +05:30
|
|
|
const mailgunInstance = mailgunProvider.getInstance();
|
2019-11-08 11:13:43 +07:00
|
|
|
if (!mailgunInstance) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
let fromAddress = message.from;
|
2019-11-13 17:52:23 +07:00
|
|
|
if (/@localhost$/.test(message.from) || /@ghost.local$/.test(message.from)) {
|
2019-11-08 11:13:43 +07:00
|
|
|
fromAddress = 'localhost@example.com';
|
|
|
|
common.logging.warn(`Rewriting bulk email from address ${message.from} to ${fromAddress}`);
|
2019-11-13 17:52:23 +07:00
|
|
|
|
|
|
|
BATCH_SIZE = 2;
|
2019-11-08 11:13:43 +07:00
|
|
|
}
|
|
|
|
try {
|
2019-11-13 17:52:23 +07:00
|
|
|
const chunkedRecipients = _.chunk(recipients, BATCH_SIZE);
|
2019-11-13 17:36:19 +07:00
|
|
|
|
2019-11-13 17:52:23 +07:00
|
|
|
return Promise.map(chunkedRecipients, (toAddresses) => {
|
|
|
|
const recipientVariables = {};
|
|
|
|
toAddresses.forEach((email) => {
|
|
|
|
recipientVariables[email] = recipientData[email];
|
2019-11-13 17:36:19 +07:00
|
|
|
});
|
|
|
|
|
2019-11-13 17:52:23 +07:00
|
|
|
const messageData = Object.assign({}, message, {
|
|
|
|
to: toAddresses,
|
|
|
|
from: fromAddress,
|
|
|
|
'recipient-variables': recipientVariables
|
|
|
|
});
|
2019-11-13 09:26:31 +05:30
|
|
|
const bulkEmailConfig = configService.get('bulkEmail');
|
2019-11-13 17:52:23 +07:00
|
|
|
|
2019-11-13 09:26:31 +05:30
|
|
|
if (bulkEmailConfig && bulkEmailConfig.mailgun && bulkEmailConfig.mailgun.tag) {
|
2019-11-13 17:52:23 +07:00
|
|
|
Object.assign(messageData, {
|
2019-11-13 09:26:31 +05:30
|
|
|
'o:tag': bulkEmailConfig.mailgun.tag
|
2019-11-13 17:52:23 +07:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
return mailgunInstance.messages().send(messageData);
|
|
|
|
});
|
|
|
|
} catch (err) {
|
|
|
|
common.logging.error({err});
|
|
|
|
}
|
2019-11-04 12:36:10 +07:00
|
|
|
}
|
|
|
|
};
|