How to add CC in the notification activity of workflow in ServiceNow

Arun91
Tera Contributor

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

19 REPLIES 19

Danish Bhairag2
Tera Sage
Tera Sage

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

Hi Danish,

It is dynamic user. It will keep on changing for every ticket.

Service_RNow
Mega Sage

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.

Hi Ram,

The email need to send based on last updated by in the ticket.  It is a dynamic user.