How can i send email notification to all the members in a group instead of sending to group email

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-04-2018 04:53 AM
Hi All,
How can i send email notification to all the members in a group instead of sending to group email?
any suggestions.
Thank you.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-19-2020 02:41 AM
Did you ever find a solution I have the same requirement.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-18-2023 12:33 AM
Perfect Example refer this: https://www.servicenow.com/community/developer-forum/how-to-send-mail-to-all-the-members-of-group/m-...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-23-2025 12:17 AM
Hi Sarah,
There is a check box field called "Include Member" in the group table, If you make the checkbox as true then the notification will go to the group email and members of the group.
Thanks,
Jagan

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-19-2020 04:20 AM
Yes there is a way. If you can define conditions on a catalog Item to send customised notification.
- Create If Condition on Workflow to determine when a notification must be sent to specific mail boxes.
- I am sharing sample code below
answer = ifScript();
function ifScript() {
var myVar = workflow.variables.<variable name from catalog Item>;
workflow.scratchpad.dlname = '';
if ( myVar == 'The condition which you want to trigger emails'){
workflow.scratchpad.dlname = 'myemail@email.com';
}
3. Create customised event and notification on ServiceNow which you want to send to specific mailboxes
4. Create " Create Event" workflow activity and populate Event Name : the customised event you created
5. Parameter 1 : return workflow.scratchpad.dlname ;
6. Parameter 2 : return "" ;