|
|
@ -36,21 +36,25 @@ Emailer.send = function(template, uid, params) {
|
|
|
|
next(undefined, translated);
|
|
|
|
next(undefined, translated);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}, function(err, translated) {
|
|
|
|
}, function(err, translated) {
|
|
|
|
if(err) {
|
|
|
|
if (err) {
|
|
|
|
return winston.error(err.message);
|
|
|
|
return winston.error(err.message);
|
|
|
|
} else if (!results.email) {
|
|
|
|
} else if (!results.email) {
|
|
|
|
return winston.warn('uid : ' + uid + ' has no email, not sending.');
|
|
|
|
return winston.warn('uid : ' + uid + ' has no email, not sending.');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Plugins.fireHook('action:email.send', {
|
|
|
|
if (Plugins.hasListeners('action:email.send')) {
|
|
|
|
to: results.email,
|
|
|
|
Plugins.fireHook('action:email.send', {
|
|
|
|
from: meta.config['email:from'] || 'no-reply@localhost.lan',
|
|
|
|
to: results.email,
|
|
|
|
subject: translated[2],
|
|
|
|
from: meta.config['email:from'] || 'no-reply@localhost.lan',
|
|
|
|
html: translated[0],
|
|
|
|
subject: translated[2],
|
|
|
|
plaintext: translated[1],
|
|
|
|
html: translated[0],
|
|
|
|
template: template,
|
|
|
|
plaintext: translated[1],
|
|
|
|
uid: uid
|
|
|
|
template: template,
|
|
|
|
});
|
|
|
|
uid: uid
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
winston.warn('[emailer] No active email plugin found!');
|
|
|
|
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|