- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-28-2022 07:28 AM
How can we trigger email notifications through the script - Business rules
Solved! Go to Solution.
- Labels:
-
Multiple Versions
-
Notifications
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-28-2022 07:30 AM
Create an Event in Event Registry.
Create a notification which should trigger through the event
When To Send Section:
Send When: Event is Fired
Event Name: Specify the event name which was created
In the business rule, call the event using eventQueue() method
Syntax: gs.eventQueue('Event_Name', GlideRecord Object, parm1, parm2);
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-28-2022 07:30 AM
Create an Event in Event Registry.
Create a notification which should trigger through the event
When To Send Section:
Send When: Event is Fired
Event Name: Specify the event name which was created
In the business rule, call the event using eventQueue() method
Syntax: gs.eventQueue('Event_Name', GlideRecord Object, parm1, parm2);
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-28-2022 07:52 AM
Thank you