mirror of
https://github.com/louislam/uptime-kuma.git
synced 2026-01-31 11:03:11 +08:00
58 lines
1.9 KiB
JavaScript
58 lines
1.9 KiB
JavaScript
const NotificationProvider = require("./notification-provider");
|
|
const axios = require("axios");
|
|
|
|
class SendGrid extends NotificationProvider {
|
|
name = "SendGrid";
|
|
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
async send(notification, msg, monitorJSON = null, heartbeatJSON = null) {
|
|
const okMsg = "Sent Successfully.";
|
|
|
|
try {
|
|
let config = {
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
Authorization: `Bearer ${notification.sendgridApiKey}`,
|
|
},
|
|
};
|
|
config = this.getAxiosConfigWithProxy(config);
|
|
let personalizations = {
|
|
to: [{ email: notification.sendgridToEmail }],
|
|
};
|
|
|
|
// Add CC recipients if provided
|
|
if (notification.sendgridCcEmail) {
|
|
personalizations.cc = notification.sendgridCcEmail.split(",").map((email) => ({ email: email.trim() }));
|
|
}
|
|
|
|
// Add BCC recipients if provided
|
|
if (notification.sendgridBccEmail) {
|
|
personalizations.bcc = notification.sendgridBccEmail
|
|
.split(",")
|
|
.map((email) => ({ email: email.trim() }));
|
|
}
|
|
|
|
let data = {
|
|
personalizations: [personalizations],
|
|
from: { email: notification.sendgridFromEmail.trim() },
|
|
subject: notification.sendgridSubject || "Notification from Your Uptime Kuma",
|
|
content: [
|
|
{
|
|
type: "text/plain",
|
|
value: msg,
|
|
},
|
|
],
|
|
};
|
|
|
|
await axios.post("https://api.sendgrid.com/v3/mail/send", data, config);
|
|
return okMsg;
|
|
} catch (error) {
|
|
this.throwGeneralAxiosError(error);
|
|
}
|
|
}
|
|
}
|
|
|
|
module.exports = SendGrid;
|