Android Question Email and HTML

AlpVir

Well-Known Member
Licensed User
Longtime User
How to send an email that contains the HTML code ?
B4X:
Dim Message As Email
Message.To.Add("alfa@site.com")   
Message.Subject = "Test html"
Message.Body = "<table><tr><td>Test <b>one</b></td></tr></table>"
Message.GetHtmlIntent
StartActivity(Message.GetHtmlIntent)
Despite numerous tests I have not achieved my goal.
Thanks in advance
 
Top