How to send an email that contains the HTML code ?
Despite numerous tests I have not achieved my goal.
Thanks in advance
B4X:
Dim Message As Email
Message.To.Add("[email protected]")
Message.Subject = "Test html"
Message.Body = "<table><tr><td>Test <b>one</b></td></tr></table>"
Message.GetHtmlIntent
StartActivity(Message.GetHtmlIntent)
Thanks in advance