Setting the HTML part |
An HtmlEmailMessage consists of two parts, the text/plain part and the text/html part. Depending on the recipients email client settings either may be displayed. To set the text/html part of the HtmlEmailMessage use the SetHtmlBody method.
Example
[C#]
message.SetHtmlBody("<b>this is some html text</b>");
[Visual Basic]
message.SetHtmlBody("<b>this is some html text</b>") |