Im having problems with AspQMail not handling my messages. What should I check?
The most common reason for AspQMail failures is the CrLf issue as noted in the AspQMail docs. You must use a valid CrLf to force a carriage return/new line in your messages –assuming you are doing some sort of pre-formatting of your messages. With VBScript you can use the predefined constant VBCrLf. If you use JScript you can use \r\n. You cannot use a single Cr or a single Lf to force a new line in the message. AspQMail will not accept anything but a full CrLf sequence for a new line.