Hi Experts,
I hope you're all doing well.
Using following piece of code I get the attached output string as body of the email.
Body := 'Hi ' + Customer.Name + ',\\You are blocked.';
Message(Body);
"Email Message".Create(Customer."E-Mail", Subject, Body);
if Email.Send("Email Message", "Email Scenario"::Notification) then
Message('Email Sent.');

I'm passing this 'Body' text variable as email body and when I receive the email then there is no line break in the email body. Please see following attached screenshot.

I've also tried <br> but all in vain. Can anyone please tell me that how can I insert a line break in email body? Answers will be highly appreciated.
Thanks for reading.