How to send email to all group member in Flow Designer
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-02-2018 10:40 PM
Hi All,
Is it possible to send an email to an all group member in Flow Designer from Send Email action?
Please suggest me.
TIA
PKG
- Labels:
-
Platform and Cloud Security

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-02-2018 11:07 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-02-2018 11:22 PM
Hi Jaydeep,
Thanks for quick response, but my requirement is when I send the email to that particular group after that email received the all group member.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-11-2020 02:41 PM
Unbelievably no solution to this.... Until now! 🙂
Drop down the Fx button next to "To" in the Send Email Action step.
Put this in the script:
//Get email addresses of SAM group members
//"SAM" groups SysID is: "8111195edb5333300b79d44444b961998"".
var samARR = [];
var groupGR = new GlideRecord('sys_user_grmember');
groupGR.addQuery("group", "8111195edb5333300b79d44444b961998");
groupGR.query();
while(groupGR.next())
{
samARR.push(groupGR.user.email);
}
var SAMstr = samARR.join(',');
return SAMstr;​
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-04-2025 11:36 PM
Thank you it worked !! 🙂