If an Incident has been reassigned to a new person, send an email notification to the old assignee and the new assignee.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-01-2022 01:03 AM
The recipients of the email notification should contain the old assignee and new assignee. How can you do this one?
- Labels:
-
Notifications

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-01-2022 01:10 AM
You can script a business rule on change of the assigned_to field, generating an event. Pass the current record, the new assigne (current.assigned_to) and the previous assignee (previous.assigned_to) in the params. Then change your notification to be triggered by the specified event and send to the people you passed in the parms.
If my answer has helped you resolve your issue, Please mark Correct and Helpful. This way, other users may also benefit from the thread. Thanks!
Martin Ivanov
Community Rising Star 2022
Please mark Correct and click the Thumb up if my answer helps you resolve your issue. Thanks!
Martin Ivanov
ServiceNow MVP 2023, 2024

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-01-2022 01:10 AM
Hi,
You can review the OOB Business Rule "change events" which does this. This is achieved by firing an event containing both the previous and current assignee
if (!previous.assigned_to.nil()) {
if (!current.assigned_to.nil() && current.assigned_to.changes() &&
(!previous.start_date.nil() && !previous.end_date.nil()))
gs.eventQueue("change.calendar.notify.remove", current, current.assigned_to, previous.assigned_to);
}

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-07-2022 11:21 PM
Please mark Correct and Helpful if my answer helps you resolve your issue.
Тhis will close the thread and other users may also benefit from it.
Thanks!
Martin Ivanov
Community Rising Star 2022
Please mark Correct and click the Thumb up if my answer helps you resolve your issue. Thanks!
Martin Ivanov
ServiceNow MVP 2023, 2024