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("[email protected]")   
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
 

AlpVir

Well-Known Member
Licensed User
Longtime User
@sorex
I think that you're right and that the method I used do not always work.
Pending resolution of the problem I used an attachment; It is not very satisfactory, however.
 
Upvote 0
Top