- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-20-2015 03:28 AM
Hi All,
I need to map a group under "CC" so that all the group members in that group should be notified about the action on any request.
Please help me to do this.
Thanks in advance,
Anil
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-20-2015 03:33 AM
email.addAddress("cc", "group mail id","Jgroup name");
email.addAddress("bcc", "group mail id","Jgroup name");
Click below link for more info

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-20-2015 03:33 AM
email.addAddress("cc", "group mail id","Jgroup name");
email.addAddress("bcc", "group mail id","Jgroup name");
Click below link for more info
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-04-2020 05:16 PM
Hi Harish,
Your code is not working for me
var answer = [];
answer.push(current.variables.enter_proposer_s_email_address.email);
var ans = current.variables.enter_mail_for_cc.toString();
var ans1 = ans.split(',');
for(var i=0;i<=ans1.length;i++){
var gr = new GlideRecord('sys_user');
gr.addQuery("sys_id",ans1[i]);
gr.addQuery("email", "!=", "");
gr.query();
if(gr.next()){
//gs.addInfoMessage(gr.email);
answer.push(email.addAddress("cc", gr.email));
}
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-20-2015 03:34 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-20-2015 04:24 AM
Thank you Harish & Ghaing