Somebody recently asked me how to create an email message with line breaks. So, I thought this might be helpful for other members of the forum to know as well.
The email body needs to be formatted with html. Therefore, when using the character function to build a concatenanted action result that can be used as the body for your email, you'll need include the html tags in addition to your text.
Your action result might like this.
EmailBody_AR = <p>This is the email body</p><p>Signed Mark Crews</P>
Your email body would show up as:
This is the email body.
Signed Mark Crews