Hello there,
is there a way of how i can design the body of an Email that is send out via a scheduled report?
More Specific: I want to have a multi line Email that contains some basic text, and also some tag values.
Basically, i want my email body to be structured the same way as i type it into the Bodywindow.
Thanks for your help!
Emails sent from the report builder are written out as text/html
content type.
So you can use the extremely limited subset of HTML supported by email clients - so if all you want is line breaks, I would expect something like this to work:
"Hello, <br>this is just an email for demonstrating my problem"
The expression language doesn't have multi-line strings so you'll have to continue to use concatenation as you are and manually insert <br>
tags for line breaks.
1 Like