Отправка сообщений
The system has a plugin called “notifr” that provides notification capabilities. It supports methods for sending notifications through various channels, including SMS, push notifications, email, Telegram, and HTML5 notifications.
Here are the supported notification methods provided by the “notifr” plugin:
- SMS: Allows sending SMS notifications.
- Push: Enables sending push notifications to mobile devices.
- Email: Supports sending email notifications.
- Telegram: Provides the ability to send notifications through Telegram messenger.
- HTML5 notifications: Allows displaying notifications using HTML5 capabilities.
With the “notifr” plugin, you can utilize these methods to send notifications to users through different channels based on their preferences or the nature of the notification.
Please note that the specific implementation and usage details of each method may vary based on the configuration and setup of the “notifr” plugin in your system.
javascript свойства
New message
Create message object
msg = notifr.newMessage();
Property | Description |
---|---|
newMessage() | метод |
msg | type: Object Message |
Send message
notifr.send(msg);
Property | Description |
---|---|
send() | метод |
msg | type: Object (Message) |
Object Message
message = {
from: "",
type: "",
attributes: {
"key": "vlue"
}
}
Property | Description |
---|---|
from | type: string |
type | type: string |
attributes | type: map[string]string |
Last modified February 5, 2024: Merge pull request #270 from e154/master (7108cb6)