How to send a single email to CC recipients for Group Approvals in ServiceNow?

Nikhil C
Tera Contributor

Hii all,

 

We have configured an email notification on the sysapproval_approver table to notify a group of users when an approval is requested. A CC recipient is also included in this notification.

When the notification is triggered, each member of the approval group receives an email. However, since the notification is sent once per approver record, the CC recipient also receives the same email multiple times. For example, if the approval group has 10 members, the CC recipient receives 10 separate emails for the same approval request.

What is the recommended way to prevent multiple emails to CC recipients and ensure that the CC user receives only a single notification for the group approval?

 

Thanking in advance.
Nikhil C

2 REPLIES 2

Vaibhav Chouhan
Tera Guru

This happens because notifications on the sysapproval_approver table are triggered per approver record, not per approval request.

To fix this, you should avoid sending the CC from the approver-level notification and instead send a single notification at the record level. Create a separate notification on the sysapproval_approver record.

@Vaibhav Chouhan  Could you please elaborate it in detail.