Creating a fully automated email notification for Incident tickets.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
4 weeks ago - last edited 4 weeks ago
Create a fully automated email notification for Incident tickets. However despite having the First Strike, Second Strike and Third Striked all setup. The email is email is is still not showing. Below is my script for the Business Rule
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
4 weeks ago
Hi @EdmarM
In your gs.eventQueue , parm1 is empty.
where
gs.eventQueue('event.name', GlideRecord, parm1, parm2); // standard form
If you already know the recipient group, you can directly pass that group's mail_id in #parm1 and set the receiver to EVENT PARM 1.
Alternatively, you can select the recipient group from the Who will receive it tab, as shown below:
gs.eventQueue('incident.comment.added', current, recipientEmail, '');
Regards
Tanushree Maiti
ServiceNow Technical Architect
LinkedIn: https://www.linkedin.com/in/tanushreemaiti
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
4 weeks ago
Hi @EdmarM ,
In addition to what has already been suggested, I'd recommend verifying a couple of things.
In your script, you're calling:
gs.eventQueue('incident.first.strike', current, '', '');Here, both parm1 and parm2 are empty. If your notification is configured to send to Event parm 1, no recipient email is being passed, so the notification won't be sent.
If you already know the recipient, you can pass the email address in parm1, for example:
gs.eventQueue('incident.first.strike', current, recipientEmail, '');Alternatively, if your notification is configured to send recipients from the Who will receive tab (Users, Groups, Assigned to, Caller, etc.), then you don't need to use parm1. Instead, verify that:
The event name in the Business Rule exactly matches the registered event.
The notification is triggered by the same event.
The notification is active.
The intended recipient has a valid email address and notifications are enabled.
The event is actually being generated (check System Logs > Events) and whether the notification appears under System Mail > Email.
A good first step is to check whether the event is being created successfully. If the event exists but no email is generated, the issue is most likely with the notification configuration or recipient settings rather than the Business Rule itself.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
4 weeks ago
check this link which uses flow
[How to] Flow 3 Strike rule for Incident
💡 If my response helped, please mark it as correct ✅ and close the thread 🔒— this helps future readers find the solution faster! 🙏
Ankur
✨ Certified Technical Architect || ✨ 10x ServiceNow MVP || ✨ ServiceNow Community Leader