R
Rick
I am new to ASP.NET so please be gentle
I am trying to build an text (not HTML) email. I am putting together the
string that will be the body of the email but the formatting keeps getting
messed up. See code below.
Thanks in advance for any help you can give!
I want it to look like this...
Thank you for ordering from mycompany.com!
Your order is being billed to:
John Smith
******** But it keeps coming out like **************
Thank you for ordering from mycompany.com!Your order is being billed to: "
John Smith
******* Here is my code ********
Dim sEmail As New System.Text.StringBuilder
sEmail.Append("Thank you for ordering from mycompany.com!" & Chr(13))
sEmail.Append("Your order is being billed to: " & Chr(34))
sEmail.Append(Chr(32) & rdrMbrs.Item("fullname"))
objMail.Body = sEmail.toString()
I am trying to build an text (not HTML) email. I am putting together the
string that will be the body of the email but the formatting keeps getting
messed up. See code below.
Thanks in advance for any help you can give!
I want it to look like this...
Thank you for ordering from mycompany.com!
Your order is being billed to:
John Smith
******** But it keeps coming out like **************
Thank you for ordering from mycompany.com!Your order is being billed to: "
John Smith
******* Here is my code ********
Dim sEmail As New System.Text.StringBuilder
sEmail.Append("Thank you for ordering from mycompany.com!" & Chr(13))
sEmail.Append("Your order is being billed to: " & Chr(34))
sEmail.Append(Chr(32) & rdrMbrs.Item("fullname"))
objMail.Body = sEmail.toString()