How to send HTML email
You can pass Spanned text in your extra. To ensure that the intent resolves only to activities that handle email (e.g. Gmail and Email apps), you can use ACTION_SENDTO with a Uri beginning with the mailto scheme. This will also work if you don’t know the recipient beforehand: final Intent shareIntent = new Intent(Intent.ACTION_SENDTO, Uri.parse(“mailto:”)); … Read more