android
Emailing of HTML formatted text only works with Gmail client
I am just developing my first simple app. It generates and sends an HTML formatted email to my customers who have just purchased a product. It sends email using Intent: Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND); emailIntent.setType("text/html"); emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL, new String[] {email}); emailIntent.putExtra(android.content.Intent.EXTRA_TEXT,Html.fromHtml(htmlcode)); thiscontext.startActivity(Intent.createChooser(emailIntent, "Send mail...")); This works great if I send the email using Gmail, but I cannot find any other email client that will send an HTML formatted email. Some will be text, some will be blank. Have tried K-9, Droidmail, Innomail, android default email and others. The thing is that I do not want to send from my Gmail account. Why do none of these work, and does anyone know of an email client that will work correctly? Cheers
Related Links
Increase TextView number one at a time (over time)
android listview with multiple xml files
Error building release on Phonegap
Firemonkey android NFC Adapter
Magic with obtainStyledAttributes method
Rebooting a device when adb is connected over tcpip
How to add No Results found to Android Database query
jsonArray cannot be converted to JSONObject fetch data from mysql to a list view
What is the efficient way for saving/loading Bitmaps
Error open camera app on Android
Call fragment method inside Activity's oncreate method
Find Push Notification ON
get user information using twitter api on android app
query where relation contains any object from array
How to draw line slowly in Android?
Viewing public calendars in V3?