When I send a variable to the body of an email from within my app the “\n” is ignored and everything appears on the same line.
For example:
local results = "Line one, \nLine two, \nLine three." local options = { subject = "This is a test", isBodyHtml = true, body = results, } native.showPopup("mail", options)
If I use the above code, the body of the email displays as one line, not 3 separate lines.
Anyone with any ideas how to solve this?
Thanks,
Guy