I have noticed from time to time that e-mail messages I receive from html forms display differently. My asp page gathers the data for the body of the e-mail as follows:
txtBody = txtBody & "Form data posted" & vbcrlf &_
"First Name: " & Request.Form("txtFirstName") & vbcrlf &_
"Last Name: " & Request.Form("txtLastName") & vbcrlf
etc...
When I receive the e-mail, parts of it will be displayed as expected:
Form data posted
First Name: Andrew
Last Name: Smith
However, fields that are gathered in the same way as the code above will also display as following:
Form data posted
First Name: Andrew Last Name: Smith.
Certain fields will not wrap while others wrap without issue. But the code is the same for all fields.
If I add an additional vbcrlf, then I get two returns...
Has anyone experienced this? Does anyone know what would cause this?
Thanks in advance.