You can use android.support.v4.content.IntentCompat.EXTRA_HTML_TEXT for APIs up to 16 years old. You should add this as an addition to the intention that you usually use. Also when specifying HTML text you need to add plain alternative text as well
So your code will look like
Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND); emailIntent.setType("text/html"); emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL, new String[] {"[EMAIL PROTECTED]"}); emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "Subject"); emailIntent.putExtra(android.support.v4.content.IntentCompat.EXTRA_HTML_TEXT, "<html><body>Example</body></html>"); context.startActivity(Intent.createChooser(emailIntent, "Send mail..."));
source share