Use Table tag in Android Email

前端 未结 1 1661
孤独总比滥情好
孤独总比滥情好 2020-12-11 04:32

I want my app to construct some HTML and pass it over to an email so my user can send it to whomever they want. I found code on the web that shows how to pass the html via a

相关标签:
1条回答
  • 2020-12-11 05:06

    Unfortunately, the <table> tag isn't supported. Supported tags are actually more dependent on the email client you use to send the email - some of them are more finicky/restrictive than others. Most of them use the super-basic formatting tags like <b>, <i>, <h1>, and so on, though. The more layout-oriented tags are a lot more spotty, and some (like <table>) aren't supported at all.

    0 讨论(0)
提交回复
热议问题