[Solved] Multi-line text failing to email as multi lines

[Solved] Multi-line text failing to email as multi lines

Hi, i have a form with a Multi-line text box. On successful submit, i have the below script email an address some of the fields, including the multi line text. But it ignores if multi lines are used, it puts it all into one line when it emails. Is it possible to maintain the body typed in the multi box without the user needing to use <br> in the text box?
  1. sendmail
  2. [
  3. from:zoho.adminuserid
  4. to:"me1@email.com","me2@email.com"
  5. subject:"[Low On Supplies]"
  6. message:"Time Submitted: " + zoho.currenttime + "&nbsp;<div><hr></div><div><p>" + input.message + "</p></div><div><hr></div><div>User Submitted Name: " + input.Your_Name_Optional + "</div>"
  7. content type:HTML
  8. ]