- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-21-2022 02:53 AM
I am working on FieldGlass integration. I want to send a email to a group, for some condition.But could not understand how can I get that group here, how ever there is no option to select group from group table table.
Can anyone guide me how can I find/select that group ?
Solved! Go to Solution.
- Labels:
-
flow designer
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-21-2022 03:09 AM
Hi,
Flow doesn't support setting static user/group in Send email
2 ways
1) script
did you try to use f(x) script and return sys_id of group?
return 'groupSysId';
OR
2) use Lookup record on group table and then select the group via data pill
Regards
Ankur
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-21-2022 02:59 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎01-21-2022 03:09 AM
Hi,
Flow doesn't support setting static user/group in Send email
2 ways
1) script
did you try to use f(x) script and return sys_id of group?
return 'groupSysId';
OR
2) use Lookup record on group table and then select the group via data pill
Regards
Ankur
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-24-2024 03:41 PM
You can just put the SYS_ID of the group in the TO: field and then it will lookup everyone in that group and send the email to each person without doing a lookup.