File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed
Server-Side Components/Business Rules/Send E-Mail when attachment is added in Incident Form Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change 1+ // This script script includes when attachment is added in Incident Form, then an email notification is triggered.
2+ // Create an event on incident table
3+ Event Name - inc_attach_upload
4+ Table - incident
5+
6+ // Create a business rule on Attachement table before insert
7+ //Condition Table Name is incident
8+ gs . addInfoMessage ( 'Attachement is Added' ) ;
9+ gs . eventQueue ( 'inc_attach_upload' , current , current . table_sys_id ) ;
10+
11+ // Create a Notification when event is triggered on incident table
12+ When to Send - Event ( inc_attach_upload ) is triggered
13+ Who will Receive - Any Recipients
14+ What it will Contain - Any Email Subject and Body can be added
You can’t perform that action at this time.
0 commit comments