send email with html body code example
Example 1: html send email
<!-- Code by Scratchy -->
<!-- Twitter: @S_cratchy-->
<a href="mailto:[email protected]"<button>E-Mail me</a>
Example 2: system.net.mail send html message
msg = new MailMessage("[email protected]",
"[email protected]", "Message from PSSP System",
"This email sent by the PSSP system<br />" +
"<b>this is bold text!</b>");
msg.IsBodyHtml = true;
Example 3: html send email
<a href="mailto:[email protected]"<button>E-Mail me</a>