UNPKG

gbox-notification

Version:

Email temaplates and notifications

11 lines (8 loc) 300 B
let helper = require('./helper'); let email = require('./sendEmail'); module.exports = function (key, emails, data) { helper.groupEmails(emails).forEach((val) => { // TO DO - Send emails in intervals email.sendEmail(key.toLowerCase(), val.emails, val.language, data); }) };