Notifications Module
Last updated
Was this helpful?
Was this helpful?
// example 'after sign-in' script that notifies a list of account holders of all logins.
import notifications from 'notifications'
['admin@myorg.com', 'developer@myorg.com'].forEach((recipient) => {
notifications.send('c_login_notify', { message: "hello there!" }, {recipient: recipient})
})