Hi @Anonymous,
I'm not sure how Bongo resolved the issue himself but there are a few ways to do this.
In the most basic way you can Just press Ctrl + Enter when typing out the email, e.g.
"new" & "
" & "line"
Failing that you can add a propper CRLF with :
Char(13) & Char(10)
If you are needing something more complex, then you can Generate the email using a hidden HtmlText Box. If you are comfortable with HTML. You can then add a <br/> tag to allow a new line.
example from one of my Apps
CourseGallery.Selected.Course_Title & "<br/>
ID: " & CourseGallery.Selected.ID & "<br/>
You would then have to use the IsHTML: to send the email:
Office365.SendEmail(
[EmailAddress],
[Subject],
HtmlText1.HtmlText,
{
Importance: "normal",
IsHtml: true
}
);
Thanks,
Nicky