- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2020 11:34 AM
When configuring the content of an Email Notification, which syntax should be used to reference the properties of an event triggering the Notification?
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-09-2020 12:10 AM
Hi Sourav,
I guess you are looking for syntax of using event parms in Notifications.
You can use ${event.parm1}, ${event.parm2} to access Event parm values in Notifications. You can use email scripts for any manipulation of those parm values.
Check this out for more: How to send more than 2 parameters in an event?
If it helps, please mark ✅ Correct and 👍 Helpful.
Thanks & Regards,
Madhav
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2020 11:48 AM
Hi Sourav,
Creating an email notification involves specifying when to send it, who receives it, what it contains, and if it can be delivered in an email digest.
se the following tabs in the Notification form to configure an email notification:
- When to send — Conditions required to send the notification.
- Who will receive — Recipients of the notification.
- What it will contain — Contents of the notification.
- What Digest will contain — Contents of the email digest if the notification can be delivered in a digest.
The system uses business rules to monitor for system conditions and to generate event records in the Event [sysevent] table, which is also known as the event log or event queue.
Event-generating business rules typically use this script logic:
If [some condition is true for the current record], then [add a specific event to the queue].
- If a user adds a comment to an incident record, add an incident.commented event.
- If a user adds an incident record, add an incident.inserted event.
- If a user updates an incident record, add an incident.updated event.
he handler uses information from event records to take some kind of action such as:
- Run a script action
- Schedule a job
- Send a notification
- Trigger a workflow activity
- Trigger an inactivity monitor
Need more information check below thread.
PS: Hit like, Helpful or Correct depending on the impact of the response
Thanks & Regards
Haseena
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-07-2020 11:57 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-09-2020 12:10 AM
Hi Sourav,
I guess you are looking for syntax of using event parms in Notifications.
You can use ${event.parm1}, ${event.parm2} to access Event parm values in Notifications. You can use email scripts for any manipulation of those parm values.
Check this out for more: How to send more than 2 parameters in an event?
If it helps, please mark ✅ Correct and 👍 Helpful.
Thanks & Regards,
Madhav
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-09-2020 06:58 AM