2017-04-07 01:29:05 +02:00
|
|
|
'use strict';
|
|
|
|
|
2018-07-17 12:05:27 +02:00
|
|
|
const config = require('config');
|
|
|
|
const nodemailer = require('nodemailer');
|
|
|
|
const swig = require('swig');
|
2018-04-12 18:40:58 +02:00
|
|
|
//var AWS = require('aws-sdk');
|
2017-04-07 01:29:05 +02:00
|
|
|
|
|
|
|
module.exports = {
|
|
|
|
sendMail: (to_email, subject, body, options) => {
|
|
|
|
if (!options) {
|
|
|
|
options = {};
|
|
|
|
}
|
|
|
|
|
2018-07-17 12:05:27 +02:00
|
|
|
const teamname = options.teamname || config.get('team_name');
|
|
|
|
const from = teamname + ' <' + config.get('contact_email') + '>';
|
2017-04-07 01:29:05 +02:00
|
|
|
|
|
|
|
let reply_to = [from];
|
|
|
|
if (options.reply_to) {
|
|
|
|
reply_to = [options.reply_to];
|
|
|
|
}
|
|
|
|
|
|
|
|
let plaintext = body;
|
|
|
|
if (options.action && options.action.link) {
|
|
|
|
plaintext+="\n"+options.action.link+"\n\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
const htmlText = swig.renderFile('./views/emails/action.html', {
|
|
|
|
text: body.replace(/(?:\n)/g, '<br />'),
|
|
|
|
options: options
|
|
|
|
});
|
|
|
|
|
2018-07-17 12:05:27 +02:00
|
|
|
if (config.get('mail_provider') === 'console') {
|
|
|
|
|
2017-04-07 01:29:05 +02:00
|
|
|
console.log("Email: to " + to_email + " in production.\nreply_to: " + reply_to + "\nsubject: " + subject + "\nbody: \n" + htmlText + "\n\n plaintext:\n" + plaintext);
|
2018-07-17 12:05:27 +02:00
|
|
|
|
|
|
|
} else if (config.get('mail_provider') === 'smtp') {
|
|
|
|
|
|
|
|
const transporter = nodemailer.createTransport({
|
|
|
|
host: config.get('mail_smtp_host'),
|
|
|
|
port: config.get('mail_smtp_port'),
|
|
|
|
secure: config.get('mail_smtp_secure'),
|
|
|
|
requireTLS: config.get('mail_smtp_require_tls'),
|
|
|
|
auth: {
|
|
|
|
user: config.get('mail_smtp_user'),
|
|
|
|
pass: config.get('mail_smtp_pass'),
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
transporter.sendMail({
|
|
|
|
from: from,
|
|
|
|
replyTo: reply_to,
|
|
|
|
to: to_email,
|
|
|
|
subject: subject,
|
|
|
|
text: plaintext,
|
|
|
|
html: htmlText,
|
|
|
|
}, function(err, info) {
|
|
|
|
if (err) {
|
|
|
|
console.error("Error sending email:", err);
|
|
|
|
} else {
|
|
|
|
console.log("Email sent.");
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
} else if (config.get('mail_provider') === 'aws') {
|
|
|
|
/*
|
2017-04-07 01:29:05 +02:00
|
|
|
AWS.config.update({region: 'eu-west-1'});
|
|
|
|
var ses = new AWS.SES();
|
|
|
|
|
|
|
|
ses.sendEmail( {
|
|
|
|
Source: from,
|
|
|
|
Destination: { ToAddresses: [to_email] },
|
|
|
|
ReplyToAddresses: reply_to,
|
|
|
|
Message: {
|
|
|
|
Subject: {
|
|
|
|
Data: subject
|
|
|
|
},
|
|
|
|
Body: {
|
|
|
|
Text: {
|
|
|
|
Data: plaintext,
|
|
|
|
},
|
|
|
|
Html: {
|
|
|
|
Data: htmlText
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}, function(err, data) {
|
2018-03-30 22:34:27 +02:00
|
|
|
if (err) console.error("Error sending email:", err);
|
2017-04-07 01:29:05 +02:00
|
|
|
else console.log("Email sent.");
|
|
|
|
});
|
2018-07-17 12:05:27 +02:00
|
|
|
*/
|
|
|
|
}
|
2017-04-07 01:29:05 +02:00
|
|
|
}
|
|
|
|
};
|