Send notification from record producer

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-31-2024 03:57 AM
Hi team,
I have a requirement to send a notification from a record producer. I have created one event registry and one notification. Notification send on event fired and event name is configured.
I have written on the record producer the below code:
gs.eventQueue("contact_creation_link", '', "", "email");
Once the record producer is submitted , it is creating an user on a table. So that particular user need to receive this email.
In my case, user is getting created on the table but no email is generated.
Please help with this.
Thanks in Advance
Souvick
5 REPLIES 5
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-31-2024 05:01 AM - edited 01-31-2024 05:02 AM
Hello @souvick1 ,
Please try this code
gs.eventQueue("contact_creation_link", 'current', "", "email");
Also check email properties
Please mark helpful if I have answered you