I want to send a mail-link as a text of mail message.
eg.
hello Rahul,
reply to me here xyz@yahoo.com
bye
I want the the email-id to be displayed as link so when one clicks on it an email client is opened.
Please help
Here is a link with some syntax. Basically, you use an anchor tag.
-
<a href="mailto:someone@yahoo.com">Email someone@yahoo.com</a>
-