Trying to add hyperlink with email intent, but on other side i got nothing just plain text. If i use gmail client application, this works great but not with default email app(device inbuid app).
here is my code snipt
Intent emailIntent = new Intent(Intent.ACTION_SEND);
emailIntent.setData(Uri.parse("mailto:"));
emailIntent.setType("plain/text");
emailIntent.putExtra(Intent.EXTRA_EMAIL, new String[]{"abc@gyc.com","aaa@bbb.com"});
emailIntent.putExtra(Intent.EXTRA_SUBJECT, "Check this out!");
emailIntent.putExtra(Intent.EXTRA_TEXT, Html.fromHtml("<a href=\"www.google.com\">link</a>"));
startActivityForResult(emailIntent,Util.EMAILREQUESTCODE);