feat: Support YZJ notification provider (#5686)

Co-authored-by: Frank Elsinga <frank@elsinga.de>
This commit is contained in:
Harry
2025-03-14 09:40:13 +08:00
committed by GitHub
parent cf44d39e1b
commit fce824f5a8
6 changed files with 85 additions and 2 deletions

View File

@@ -69,6 +69,7 @@ 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");
const YZJ = require("./notification-providers/yzj");
class Notification {
@@ -154,7 +155,8 @@ class Notification {
new GtxMessaging(),
new Cellsynt(),
new Wpush(),
new SendGrid()
new SendGrid(),
new YZJ()
];
for (let item of list) {
if (! item.name) {