How to add CC in the notification activity of workflow in ServiceNow
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2024 12:33 AM
Hi Team,
I have a requirement to add cc in the notification activity of workflow in ServiceNow. Could some one please help me on that.
Thanks in Advance
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2024 12:38 AM
Hi @Arun91 ,
You need to use an email script for this. Create a email script & call it from your notification like below
${mail_script:script_name} // instead of script name u need to enter mail script name which u will be creating.
then in email script u can add this command
email.addAddress("cc","email_address_of_the_user","Name_of_ther_user");
Thanks,
Danish
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2024 12:43 AM
Hi Danish,
It is dynamic user. It will keep on changing for every ticket.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2024 12:47 AM
Hi @Arun91
use the following mail script in workflow notification activity message to achieve that:
<html>
<body>
<mail_script>
email.addAddress("cc","test@test.com");
</mail_script>
Please mark reply as Helpful/Correct, if applicable. Thanks!
If I have answered your question, please mark my response as correct so that others with the same question in the future can find it quickly and that it gets removed from the Unanswered list.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-20-2024 12:50 AM
Hi Ram,
The email need to send based on last updated by in the ticket. It is a dynamic user.