Skip to main content

Sending Notification

Now that you have created a template successfully, let's see how we can send notifications.

NotificationModule comes with a Notify method to send notifications to notifiables.

const notifiables = [
{
email: 'vinayaksarawagi25@gmail.com',
mobile: '+918006076668',
name: 'Vinayak',
},
];

await Notify({
notifiables,
template: 'sendOtp',
payload: { otp: '12345' },
});

That's it! Your notifications will now be sent to all notifiables over the channels that you have mentioned in your template.