G
Guest
I'd like to send a single e-mail message message that uses the escape character \n as well as the html tag <i> in the body
How can I combine the two parts of this merssage
message.BodyFormat = MailFormat.Text
String msgTextA = "\n\nFrom: Carol Johnson\n\nSent: Monday, February 9, 2004
message.BodyFormat = MailFormat.Html
String msgTextB = "<i> Inventory Control <i>
????? message.Body = msgText; ??????
SmtpMail.Send(message);
How can I combine the two parts of this merssage
message.BodyFormat = MailFormat.Text
String msgTextA = "\n\nFrom: Carol Johnson\n\nSent: Monday, February 9, 2004
message.BodyFormat = MailFormat.Html
String msgTextB = "<i> Inventory Control <i>
????? message.Body = msgText; ??????
SmtpMail.Send(message);