forked from louislam/uptime-kuma
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add notification provider
SendGrid
(louislam#5205)
Co-authored-by: Frank Elsinga <[email protected]>
- Loading branch information
1 parent
a20a43b
commit d7ffa33
Showing
6 changed files
with
121 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
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}`, | ||
}, | ||
}; | ||
|
||
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<template> | ||
<div class="mb-3"> | ||
<label for="sendgrid-api-key" class="form-label">{{ $t("SendGrid API Key") }}</label> | ||
<HiddenInput id="push-api-key" v-model="$parent.notification.sendgridApiKey" :required="true" autocomplete="new-password"></HiddenInput> | ||
</div> | ||
<div class="mb-3"> | ||
<label for="sendgrid-from-email" class="form-label">{{ $t("From Email") }}</label> | ||
<input id="sendgrid-from-email" v-model="$parent.notification.sendgridFromEmail" type="email" class="form-control" required> | ||
</div> | ||
<div class="mb-3"> | ||
<label for="sendgrid-to-email" class="form-label">{{ $t("To Email") }}</label> | ||
<input id="sendgrid-to-email" v-model="$parent.notification.sendgridToEmail" type="email" class="form-control" required> | ||
</div> | ||
<div class="mb-3"> | ||
<label for="sendgrid-cc-email" class="form-label">{{ $t("smtpCC") }}</label> | ||
<input id="sendgrid-cc-email" v-model="$parent.notification.sendgridCcEmail" type="email" class="form-control"> | ||
<div class="form-text">{{ $t("Separate multiple email addresses with commas") }}</div> | ||
</div> | ||
<div class="mb-3"> | ||
<label for="sendgrid-bcc-email" class="form-label">{{ $t("smtpBCC") }}</label> | ||
<input id="sendgrid-bcc-email" v-model="$parent.notification.sendgridBccEmail" type="email" class="form-control"> | ||
<small class="form-text text-muted">{{ $t("Separate multiple email addresses with commas") }}</small> | ||
</div> | ||
<div class="mb-3"> | ||
<label for="sendgrid-subject" class="form-label">{{ $t("Subject:") }}</label> | ||
<input id="sendgrid-subject" v-model="$parent.notification.sendgridSubject" type="text" class="form-control"> | ||
<small class="form-text text-muted">{{ $t("leave blank for default subject") }}</small> | ||
</div> | ||
<i18n-t tag="p" keypath="More info on:" style="margin-top: 8px;"> | ||
<a href="https://docs.sendgrid.com/api-reference/mail-send/mail-send" target="_blank">https://docs.sendgrid.com/api-reference/mail-send/mail-send</a> | ||
</i18n-t> | ||
</template> | ||
|
||
<script> | ||
import HiddenInput from "../HiddenInput.vue"; | ||
export default { | ||
components: { | ||
HiddenInput, | ||
}, | ||
mounted() { | ||
if (typeof this.$parent.notification.sendgridSubject === "undefined") { | ||
this.$parent.notification.sendgridSubject = "Notification from Your Uptime Kuma"; | ||
} | ||
}, | ||
}; | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters