Setting the text 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/plain part of the HtmlEmailMessage use the SetTextBody method.
Example
[C#]
message.SetTextBody("this is some plain text");
[Visual Basic]
message.SetTextBody("this is some plain text") |