In my app I am sending an html email using this code

i.setType( "message/rfc822" );       // I have also tried using text/
html and text/plain and text/message with no luck
i.putExtra( Intent.EXTRA_SUBJECT, so.getSubject() );
i.putExtra( Intent.EXTRA_TEXT, Html.fromHtml( html here ) );

When the user selects the GMail client the html is sent correctly.

When sent via the stock "Email" client, the HTML anchors in the
document are converted to plain text and hence there are no links to
follow in the resulting email.

Is there any way to do this for "any" email client, or is this a
limitation of the stock Email client that I just have to live with?

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to