Using email templates in flow designer?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-03-2020 04:48 AM
Hello,
I am creating flows in my instance, with flows that are sending emails.
Does anyone know how to use email templates within a flow email? Right now its just a white background with nothing else. We want to have these emails display universally like our other emails.
Thank You

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-03-2020 04:52 AM
Hi,
check the below thread, it might help you:
If I have answered your question, please mark my response as correct and/or helpful.
Thank you very much
Cheers
Alberto
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-09-2022 05:16 AM
Unfortunately, I could not find a simple solution either, so I used a scripted body.
var bodyArr = [
"Greeting",
"some text",
];
var template = new GlideRecord('sys_email_layout');
template.addQuery('name', 'name of the template');
template.query();
if(template.next())
return template.layout.replace("${notification:body}",bodyArr.join("<br/>"));
else
return bodyArr.join("<br/>");
Hope this helps 🙂
Sonja
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-17-2025 05:15 AM
Hello @sonjaroth,
Thank you very much for sharing this solution, it works for me as well (out of all other solutions that I could try).
However, I am still finding a way to figure out way to set "${NOTIF_UNSUB}",' "${NOTIF_PREFS}" as well from this Scripted body. It appears as below -
I was able to get the Template & Body set properly, but just not able to set/remove these 2 Options.
Please share if you have tried that out to and worked for you.
Thank you very much in advance!
Best Regards
Madhuri