salix/services/mailer/application/mail.js

70 lines
2.1 KiB
JavaScript
Raw Normal View History

2017-05-30 06:06:14 +00:00
var nodemailer = require('nodemailer');
var settings = require('./settings.js');
var template = require('./template.js');
2017-05-30 06:06:14 +00:00
/**
* Mail module
*/
2017-05-30 06:06:14 +00:00
module.exports = {
2017-05-30 06:06:14 +00:00
transporter: null,
/**
* Load mail settings.
2017-05-30 06:06:14 +00:00
*/
init: function() {
this.transporter = nodemailer.createTransport(settings.smtp());
2017-05-30 06:06:14 +00:00
this.transporter.verify(function(error, success) {
if (error) {
2017-06-07 13:28:42 +00:00
throw new Error(error);
} else if (settings.app().debug) {
console.log('SMTP connection stablished');
2017-05-30 06:06:14 +00:00
}
});
},
/**
* Send email.
* @param {Object} recipient - Mail destinatary
* @param {String} subject - Subject
* @param {String} body - Mail body
* @param {Object} attachments - Mail attachments
* @param {Object} cb - Callback
*/
2017-06-07 13:28:42 +00:00
send: function(recipient, subject, body, attachments, cb) {
2017-05-30 06:06:14 +00:00
let mailOptions = {
from: '"' + settings.app().senderName + '" <' + settings.app().senderMail + '>',
2017-06-07 13:28:42 +00:00
to: recipient,
subject: subject,
html: body,
attachments
2017-05-30 06:06:14 +00:00
};
if (process.env.NODE_ENV !== 'production') {
mailOptions.to = settings.testEmail;
}
2017-05-30 06:06:14 +00:00
this.transporter.sendMail(mailOptions, (error, info) => {
if (error) {
return cb({status: 'REJECT', data: {message: 'Email not sent: ' + error}});
2017-05-31 12:55:41 +00:00
} else if (settings.app().debug) {
2017-06-07 13:28:42 +00:00
console.log('Mail sent ' + info.messageId + ' [' + info.response + ']');
2017-05-30 06:06:14 +00:00
}
cb({status: 'ACCEPT', data: {message: 'Email sent'}});
});
},
/**
* Send email with template.
* @param {String} tplName - Template name
* @param {Object} params - Params object
* @param {Object} cb - Callback
*/
sendWithTemplate: function(tplName, params, cb) {
template.get(tplName, params, data => {
this.send(data.recipient, data.subject, data.body, data.attachments, result => {
cb(result);
});
2017-05-30 06:06:14 +00:00
});
}
};