- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-27-2023 03:59 AM
I am using the Flow Designer SendEmail action in ServiceNow.
If I want to output the value of a set of variables in the body of the email, how should I do it?
If I use a ForEach loop, multiple emails will be sent.
I want to output all the values of a variable set in one email.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-27-2023 10:45 AM
Hi @arai keigo ,
You can declare a flow variable and can use the set variables action to populate this flow variable with your required output and the format.....Later you can use this flow variable in your email body...Hope that helps 🙂
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-27-2023 10:45 AM
Hi @arai keigo ,
You can declare a flow variable and can use the set variables action to populate this flow variable with your required output and the format.....Later you can use this flow variable in your email body...Hope that helps 🙂
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-27-2023 06:31 PM
thank you!
If you write a script in the form of setting a flow variable and assigning a character string to the variable
It is solved.