feat: Support SMSPlanet notification provider (#5800)

Co-authored-by: Frank Elsinga <frank@elsinga.de>
This commit is contained in:
Dawid
2025-04-26 22:33:26 +02:00
committed by GitHub
parent 3b58ac3fd3
commit f6444aacd2
6 changed files with 100 additions and 3 deletions

View File

@@ -72,6 +72,7 @@ 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");
const SMSPlanet = require("./notification-providers/sms-planet");
class Notification {
@@ -160,7 +161,8 @@ class Notification {
new Cellsynt(),
new Wpush(),
new SendGrid(),
new YZJ()
new YZJ(),
new SMSPlanet(),
];
for (let item of list) {
if (! item.name) {