Maybe you're sending HTML emails?
WriteLine works only for plaintext emails.
Use <br/> for new line in HTML emails.
To send HTML emails specify these settings:
set mail.ContentType = "text/html" set mail.IsHTML = 1 set mail.Charset = "utf-8"
- Log in to post comments