feat: add notification provider SendGrid (#5205)

Co-authored-by: Frank Elsinga <frank@elsinga.de>
This commit is contained in:
sctnightcore
2024-10-18 07:25:23 +07:00
committed by GitHub
parent a20a43b8aa
commit d7ffa33950
6 changed files with 121 additions and 2 deletions

View File

@@ -68,6 +68,7 @@ const GtxMessaging = require("./notification-providers/gtx-messaging");
const Cellsynt = require("./notification-providers/cellsynt");
const Onesender = require("./notification-providers/onesender");
const Wpush = require("./notification-providers/wpush");
const SendGrid = require("./notification-providers/send-grid");
class Notification {
@@ -153,6 +154,7 @@ class Notification {
new GtxMessaging(),
new Cellsynt(),
new Wpush(),
new SendGrid()
];
for (let item of list) {
if (! item.name) {