I have gone through several tutorials for sending formatted text in email in android app. But there is no way to format the text with tag.
I am working with div tags as I came to know that div tag is supported for sending email. But, how can I align text right in an email using div tag. When I am using float:right property in string.xml file in a string resource its giving error.
Any help is greatly appreciated!!
I am just giving a small sample of code that I am using.
<string name="email_text"> <div width="200px">
<div float="left" width="100px">Test </div>
<div float="right" width="50px">Test </div>
</div>
</string>
tag, so I need a solution for this.