2026-02-24 20:44:16 +00:00
|
|
|
|
namespace Sozsoft.Notifications.Enums;
|
|
|
|
|
|
|
|
|
|
|
|
public static class NotificationChannels
|
|
|
|
|
|
{
|
2026-05-11 12:19:27 +00:00
|
|
|
|
public const string Sms = "Sms"; //SMS (ABP Sms + Posta Guvercini)
|
|
|
|
|
|
public const string Mail = "Mail"; //Email (ABP Emailing + Amazon SES)
|
|
|
|
|
|
public const string Rocket = "Rocket"; //Rocket.Chat (HTTP API)
|
|
|
|
|
|
public const string Desktop = "Desktop";
|
|
|
|
|
|
public const string UiActivity = "UiActivity"; //UI Activity (ABP UI Activity)
|
|
|
|
|
|
public const string UiToast = "UiToast"; //UI Toast (ABP UI Toast) Ayarlar/Sistem/Bildirimler/Chrome açık olması gerekiyor.
|
|
|
|
|
|
public const string WhatsApp = "WhatsApp"; //WhatsApp (HTTP API, template-based)
|
2026-05-11 09:37:52 +00:00
|
|
|
|
// public const string Telegram = "Telegram";
|
2026-02-24 20:44:16 +00:00
|
|
|
|
}
|