Brinkster Knowledge Base

KB Home   /  Support  /  Errors  /   Mail (code) sending errors
Mail (code) sending errors Articles
IPWorks

IPWorksASP.SMTP error '800a4ec2'


554 5.7.1 Message cannot be accepted, content filter rejection RFC822




JMail

jmail.Message error '8000ffff'


The message was undeliverable. All servers failed to receive the message



CDO SYS

error '80040211'



Perists

Persits.MailSender.4 error '800a0006'


554 5.7.1 Message cannot be accepted, content filter rejection RFC822




Resolution

The problem is possibly with the use of " chr(13) " in the body of your message. Try using " vbcrlf " in place of " chr(13) " to satisfy RFC standards. If you replace chr(13) with vbcrlf, your mail message will be compliant with this RFC standard.


Examples:

Error:

Mail.Body="This is the body" & chr(13) & "This is the next line"



Without Error:

Mail.Body="This is the body" & vbcrlf & "This is the next line"