Avinash
NNovu
•Created by Avinash on 9/18/2024 in #💬│support
select which user should receive email or push
const novu = new Novu(process.env.NOVU_API_KEY);
await novu.trigger('demo', {
to: [{
subscriberId: "[email protected]",
email: "[email protected]"
}, {
subscriberId: "[email protected]",
email: "[email protected]"
}],
payload: {
organization: {
logo: 'https://evilcorp.com/logo.png',
},
},
});
my demo flow contains two things email and push
now i want to send only push notification to [email protected]
and for [email protected] both email and push should be sent
how can i achieve it
11 replies
NNovu
•Created by Avinash on 7/11/2024 in #💬│support
need actual message instead of "new Notification"
9 replies