- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2020 12:26 PM
I would like to use flow designer to look up a few items and then email out on those items. I don't want to have an individual email for each item, I would like it to be in one email. I can not figure out how to do this. Can anyone provide any guidance?
Thank you!
Solved! Go to Solution.
- Labels:
-
flow designer
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-07-2020 02:20 PM
Here's an example. Let's say that step one is a Lookup Records step that on the cmdb_ci_business_applications table. For Step 2, you add your Send Email step to whatever recipients and with whatever title you desire. For the body, you'll use an inline function (the f(x) just to the right of the box).
---
---
If it is a different number, when you are in the editor for the inline script you can always start with "fd_data." and it will autocomplete with anything it can resolve. It's like the script equivalent of a data pill.
Let me know if you need any more detail. Thanks to
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2020 05:50 AM
You can get whatever information you want while you are looping over them. Like any script-based loop over a GlideRecord result set, it is not re-entrant so you need to get whatever you want in the while loop. You could build your own Javascript objects and push that into the array instead of just the names like I did.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-25-2020 04:24 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-03-2024 08:35 PM
hi,
how can I group all the results from the look up records per assignee and convert it to a link to be sent using email function.