- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2024 09:42 PM
Required help @Vasantharajan N @Ankur Bawiskar @asifnoor
As I need to keep Outlook Group email ID in the CC list members in Email Notification as mentioned below
Outlook Group Email ID: HKGSSComputerOperations@xyz.com
Sample View:
Need to know how to create this Outlook Group Email ID in ServiceNow
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-24-2024 11:49 PM
By using the below mentioned Script in Notification Email Script got the solution
var sdesk = []; // declare array to push GTO DATA CENTER OPERATIONS group member emails into
var sd = new GlideRecord('sys_user_grmember');
sd.addQuery('group', '93315d2c47cb4ad0f4564ed4116d43be'); // sys_id of the GTO DATA CENTER OPERATIONS group
sd.query();
while (sd.next()) {
sdesk.push(sd.user.email);
}
email.addAddress("cc", sdesk.toString(), "GTO DATA CENTER OPERATIONS");

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2024 10:14 PM
Hello @Arjun Reddy Yer
You can add email in CC using the email script. example script is provided at https://docs.servicenow.com/bundle/washingtondc-platform-administration/page/script/server-scripting...
You can use addAddress() function for the same.
Thank you,
Ali
Thank you,
Ali
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2024 10:34 PM
Can I know how to create this Outlook Group Email ID in ServiceNow
Outlook Group Email ID: HKGSSComputerOperations@xyz.com

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2024 10:41 PM
What do you mean by you want to create outlook group email id in ServiceNow? an email can be assigned to user or group by default. If this is group email, you can create an assignment group and update this email there.
Thank you,
Ali
Thank you,
Ali
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-20-2024 10:46 PM
So, need to create a Group and mention the Outlook Email ID to Group Email
Outlook Group Email ID: HKGSSComputerOperations@xyz.com