For notifying an employee

send_notification(text, users, priority) - sends a notification to the specified employees.

Parameters:

In this example, the users parameter is passed as an array of project employees’ email addresses.

Then, the users parameter is passed to the function without quotes or brackets:

If you need to send an email to a specific employee, you can pass the users parameter as follows:

Notifications received from this method can be managed in the notification settings under the "Chat bot" section.

users = ["[email protected]", "[email protected]"]

send_notification('Notification text', users, 1)