[Solved] How to send mail using C# with html format [closed]


Setting isBodyHtml to true allows you to use HTML tags in the message body:

SmtpClient sc = new SmtpClient("mail address");
MailMessage msg = null;

try
{
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;

     sc.Send(msg);
}

catch (Exception ex)
{
    throw ex;
}

finally
{
    if (msg != null)
    {
        msg.Dispose();
    }
}

Use msg.IsBodyHtml = true;

solved How to send mail using C# with html format [closed]