Login
|
Webmail
|
Let's Chat
Shared Website Hosting
Domain Names
Hosted Email
Shared Website Hosting
Domain Names
Hosted Email
Company Overview
Legal
Brinkster Knowledge Base
KB Home
/
Support
/
Errors
/
Content filter rejection
Content filter rejection
http://www.w3.org/Protocols/rfc822/rfc822.txt
. The problem arises when a message is formatted without using a combination of new line feeds and carriage returns.
This is based on a type-writer. The new line character moves the cursor down the page, while the carriage return moves the cursor to the beginning of the line. If both are not present at each line, or if one character is sent without the other, the RFC 822 filter rejects the message.
Webmasters should be aware of the following information:
For JavaScript/C#, every time you desire a new line, the following characters need to be present: "\n\r". The "\n" is the newline character and the "\r" is the carriage return. The ASCII code can also be used: "char(10) + char(13)".
For Vb/VbScript/Vb.Net, each line must be tagged with the reserved word "vbCrLf" or the ASCII characters "Chr(10) & Chr(13)".