How to trigger a notification through a business rule

Krishna Teja
Kilo Contributor

How can we trigger email notifications through the script - Business rules

1 ACCEPTED SOLUTION

Chandra Sekhar6
Tera Guru

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);

View solution in original post

2 REPLIES 2

Chandra Sekhar6
Tera Guru

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);

Thank you