Have seen this before with some email components, such as CDONTS.
The way to prevent it is to insert a Carriage Return and Line Break in to the body of the email sent to the mail server.
If you are using ASP with VbScript as I believe you are you need to add vbCrLf between lines eg:-
strEmailBody = "text here" & _ vbCrLf & "<br />next email body line"
|