The component used to send the email, email Extended, seems to have a bug in the EmailBody field, when I use the special characters to create a new text line the command doesn’t work.
Even if I used +chr(13)+chr(10) (command that we used in all other text editors in the tool) in the email it doesn’t appear any new lines.
4.10.x
This is not a product bug but due to fact that for EmailBody, the content is set/sent as HTML unlike for other editors/actions.
For the email content EmailBody, use <br> instead of +chr(13)+chr(10).
Example:
"test <br> test1"
or
"test"+"<br>"+"test1"