How can i send the hyper link through mail.
Intent i = ShareCompat.IntentBuilder.from(getActivity())
.setText(PageContants.MAIL_CONTENT1+Html.fromHtml("<a href=\"" + pdfLink+"\"> here </a>")+PageContants.MAIL_CONTENT2).setSubject(PageContants.MAIL_SUBJECT)
.setType("message/rfc822").getIntent().setAction(Intent.ACTION_SEND);
startActivity(i);
Any help would be appreciated.