- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2021 02:09 AM
Hi,
I am firing an event via flow designer, and the event is being fired fine, but the notification is not being sent at all.
I have checked the event logs, event is being fired.
Below is the event setup in flow.
and below is the event that is created.
and below is notification
Im not sure why this notification is not being sent, I have set it to fire on the right event, notification is active, I have made sure the table for event and notification is same.
Please can you help?
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2021 04:08 AM
Hi,
Are other notifications going out in your system?
try to trigger the same event from background script and check once
var gr = new GlideRecord("sc_request");
gr.addActiveQuery();
gr.query();
if(gr.next()) {
gs.eventQueue("your_event_name",gr,'put the email address here','');
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2021 02:31 AM
Hi,
Also check the recipient has
1) valid email address
2) Notification preference enabled
Troubleshooting emails
Troubleshooting email issues in ServiceNow
Regards
Ankur
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2021 02:46 AM
Hi,
please check this link
Regards
Ankur
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2021 02:52 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2021 04:01 AM
Hi,
Did you try from background script ?
Regards
Ankur
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-02-2021 04:32 AM
can you provide a script to use please.