Android HTML Email Limitations.

You must Login before you can answer or comment on any questions.

I am creating an html email dialog for Android, and trying to include an img tag that points to a remote source. This works fine in iOS, but just shows a little box with the text "obj" inside the Android email client. Am I missing something, or is this just a limitation of the platform? This is a huge show stopper for me (app is unusable without this feature), so any help would be greatly appreciated. Thanks!

var emailDialog = Titanium.UI.createEmailDialog();
emailDialog.html = true;
emailDialog.subject = 'Test Email';
//Image can be any remote image from any server.
emailDialog.messageBody = "<img src='http://www.site.com/image.jpg' />";
emailDialog.show();

— asked 2 years ago by Jacob Williams
2 Comments
  • what version od SDK what version of android?

    — commented 2 years ago by Aaron Saunders

  • Same problem here, SDK 2.1.1

    — commented 10 months ago by Marco Seguri

1 Answer

Have you found a solution?

Your Answer

Think you can help? Login to answer this question!