- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2019 01:11 AM
How to add CC into the workflow notification?
Can anyone please help me in this?
Thanks In Advance
Nivedita
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2019 01:14 AM
Hi,
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>
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.
Thank you
Cheers
Alberto

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2019 02:36 AM
Hi Follow this link for further clarification , https://community.servicenow.com/community?id=community_question&sys_id=21eccb29db9cdbc01dcaf3231f9619c3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2019 02:58 AM
Hello
I have to add only one mail address in CC not multiple address.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2019 01:34 AM
hi
Write this code
(function runMailScript( current,template, email, email_action,event) {
email.addAddress('cc',current.assigned_to.manager.email +"");
})(current, template, email, email_action, event);
Thanks,
Rahul Kumar
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2019 01:41 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-21-2019 03:25 AM
Thanks,
Rahul Kumar