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();
1 Answer
Have you found a solution?
Your Answer
Think you can help? Login to answer this question!