Email Notifications
await mail.send({
to: '[email protected],
template: 'welcome',
content: {
name: 'John',
plan: 'startup',
price: '$49'
}
});Sending Notifications to Yourself
POST /api/utility/mail
// params
{
name: 'from-name',
email: 'from-email-address',
message: 'message body'
}Using Other Mail Providers
Using Custom Email Templates
Notification Preferences
Last updated