2021-09-07 15:42:46 +01:00
|
|
|
const nodemailer = require("nodemailer");
|
|
|
|
const NotificationProvider = require("./notification-provider");
|
|
|
|
|
|
|
|
class SMTP extends NotificationProvider {
|
|
|
|
|
|
|
|
name = "smtp";
|
|
|
|
|
|
|
|
async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
|
|
|
|
|
|
|
|
const config = {
|
|
|
|
host: notification.smtpHost,
|
|
|
|
port: notification.smtpPort,
|
|
|
|
secure: notification.smtpSecure,
|
|
|
|
};
|
|
|
|
|
|
|
|
// Should fix the issue in https://github.com/louislam/uptime-kuma/issues/26#issuecomment-896373904
|
|
|
|
if (notification.smtpUsername || notification.smtpPassword) {
|
|
|
|
config.auth = {
|
|
|
|
user: notification.smtpUsername,
|
|
|
|
pass: notification.smtpPassword,
|
|
|
|
};
|
|
|
|
}
|
2021-10-09 19:32:45 +01:00
|
|
|
// Lets start with default subject
|
|
|
|
let subject = msg;
|
|
|
|
// Our subject cannot end with whitespace it's often raise spam score
|
|
|
|
let customsubject = notification.customsubject.trim()
|
|
|
|
// If custom subject is not empty, change subject for notification
|
|
|
|
if (customsubject !== "") {
|
|
|
|
subject = customsubject
|
|
|
|
}
|
2021-09-07 15:42:46 +01:00
|
|
|
|
|
|
|
let transporter = nodemailer.createTransport(config);
|
|
|
|
|
|
|
|
let bodyTextContent = msg;
|
|
|
|
if (heartbeatJSON) {
|
|
|
|
bodyTextContent = `${msg}\nTime (UTC): ${heartbeatJSON["time"]}`;
|
|
|
|
}
|
|
|
|
|
|
|
|
// send mail with defined transport object
|
|
|
|
await transporter.sendMail({
|
2021-09-08 18:13:09 +01:00
|
|
|
from: notification.smtpFrom,
|
|
|
|
cc: notification.smtpCC,
|
|
|
|
bcc: notification.smtpBCC,
|
2021-09-07 15:42:46 +01:00
|
|
|
to: notification.smtpTo,
|
2021-10-09 19:32:45 +01:00
|
|
|
subject: subject,
|
2021-09-07 15:42:46 +01:00
|
|
|
text: bodyTextContent,
|
2021-09-08 18:13:09 +01:00
|
|
|
tls: {
|
|
|
|
rejectUnauthorized: notification.smtpIgnoreTLSError || false,
|
|
|
|
},
|
2021-09-07 15:42:46 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
return "Sent Successfully.";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = SMTP;
|