salix/print/core/smtp.js

61 lines
1.8 KiB
JavaScript
Raw Normal View History

2019-01-22 08:55:35 +00:00
const nodemailer = require('nodemailer');
2019-10-29 06:46:44 +00:00
const config = require('./config');
const db = require('./database');
2019-01-22 08:55:35 +00:00
module.exports = {
init() {
if (!this.transporter)
this.transporter = nodemailer.createTransport(config.smtp);
},
2022-11-09 13:51:30 +00:00
async send(options) {
options.from = `${config.app.senderName} <${config.app.senderEmail}>`;
2019-01-22 08:55:35 +00:00
2019-09-30 11:02:11 +00:00
if (process.env.NODE_ENV !== 'production') {
2022-11-09 13:51:30 +00:00
const notProductionError = {message: 'This not production, this email not sended'};
await this.mailLog(options, notProductionError);
2019-10-29 06:46:44 +00:00
if (!config.smtp.auth.user)
2019-09-30 11:02:11 +00:00
return Promise.resolve(true);
options.to = config.app.senderEmail;
2019-09-30 11:02:11 +00:00
}
2019-01-22 08:55:35 +00:00
let error;
return this.transporter.sendMail(options).catch(err => {
error = err;
throw err;
}).finally(async() => {
2022-11-09 13:51:30 +00:00
await this.mailLog(options, error);
});
},
async mailLog(options, error) {
const attachments = [];
if (options.attachments) {
for (let attachment of options.attachments) {
const fileName = attachment.filename;
const filePath = attachment.path;
if (fileName.includes('.png')) continue;
if (fileName || filePath)
attachments.push(filePath ? filePath : fileName);
}
2022-11-09 13:51:30 +00:00
}
2022-01-18 12:15:42 +00:00
2022-11-09 13:51:30 +00:00
const fileNames = attachments.join(',\n');
await db.rawSql(`
INSERT INTO vn.mail (receiver, replyTo, sent, subject, body, attachment, status)
VALUES (?, ?, 1, ?, ?, ?, ?)`, [
options.to,
options.replyTo,
options.subject,
options.text || options.html,
fileNames,
error && error.message || 'Sent'
]);
2019-09-30 11:02:11 +00:00
}
2022-11-09 13:51:30 +00:00
2019-01-22 08:55:35 +00:00
};