How to enter new line in an email message
I have an iPaas flow that emails a list of successful transactions to a recipient. The list is being generated in the flow as transactions are processed. I have added an "alt-enter" (hold alt down and press enter key) at the end of each transaction. This works when generating a text file, however, when the email is received the data is all on one line. How do I go to a new line in the email message for each transaction?
Answers (2)
Try triple brackets. It's a mustache thing.
In the Raw HTML view, it looks like this:
<!--{{{propertyName}}}-->
Use a template, with the Email notification option and build it as HTML, i.e. with <br>. If you don't want that in the text line, add it through a replace function before sending the email.
Regex has worked for me (screenshot)