trying to create an email intent which contains a few links with text
String emailText = "Hey, click me <a href=\"https://www.google.com\">This is a google link</a>";
Intent emailIntent = new Intent(Intent.ACTION_SENDTO);
emailIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
emailIntent.setType("*/*");
emailIntent.setData(Uri.parse("mailto:"));
emailIntent.putExtra(Intent.EXTRA_TEXT, Html.fromHtml(emailText));
If i open the intent with the GMAIL app, it will display the html contents correctly. But if i open it the google Inbox app the html parts are ignored.
Any ideas how to display html in all email clients?