I want to make a mailto html tag with html body in it. The content I want to send is
Hello "Name"
Good Morning (in bold)
How can I make this possible ?
I tried to put <br/> <b>
etc in mailto body attribute but not worked.
My body content is generated using c# code
code behind
mailLink.InnerHtml = string.Format("<a href=\"mailto:help@domain.com?Subject=Help code&body='" + System.Web.HttpUtility.HtmlEncode(result.ToString()) + "'+\"target=\"_top\">Send Mail</a>");
aspx page
<div id="mailLink" runat="server"></div>