mirror of
https://gitlab.com/nekoya/web.git
synced 2024-11-14 18:36:20 +01:00
43 lines
No EOL
879 B
JavaScript
43 lines
No EOL
879 B
JavaScript
var nodemailer = require("nodemailer");
|
|
|
|
let config;
|
|
try {
|
|
config = require('../config');
|
|
} catch (e) {
|
|
console.log('No config file found');
|
|
process.exit(0);
|
|
}
|
|
|
|
function send(to, subject, content) {
|
|
var email = email;
|
|
var token = token;
|
|
var mail = nodemailer.createTransport({
|
|
host: config.mail.host,
|
|
port: config.mail.port,
|
|
secure: false,
|
|
auth: {
|
|
user: config.mail.user,
|
|
pass: config.mail.password,
|
|
},
|
|
tls: {
|
|
rejectUnauthorized: false,
|
|
},
|
|
});
|
|
var mailOptions = {
|
|
from: config.mail.user,
|
|
to: to,
|
|
subject: subject,
|
|
html: content
|
|
};
|
|
mail.sendMail(mailOptions, function (error, info) {
|
|
if (error) {
|
|
return 1;
|
|
} else {
|
|
return 0;
|
|
}
|
|
});
|
|
}
|
|
|
|
module.exports = {
|
|
send
|
|
} |