Answers for "send email with html body"

6

html send email

<!-- Code by Scratchy -->
<!-- Twitter: @S_cratchy-->

<a href="mailto:[email protected]"<button>E-Mail me</a>
Posted by: Guest on February-03-2020
0

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;
Posted by: Guest on May-22-2020
0

html send email

<a href="mailto:[email protected]"<button>E-Mail me</a>
Posted by: Guest on April-04-2021

Browse Popular Code Answers by Language