Page 1 of 1

Qmail Problem

Posted: Mon Sep 25, 2006 5:39 pm
by debraduvall
Hi,

I need a mail form for Qmail. I tried somethings but its not working. Can you send me some example codes for Qmail form.

Re: Qmail Problem

Posted: Mon Sep 25, 2006 5:48 pm
by Chris Corbyn
debraduvall wrote:Hi,

I need a mail form for Qmail. I tried somethings but its not working. Can you send me some example codes for Qmail form.
Qmail is a complete PITA. I bet the problem is that you've got LF without CR.

i.e.

Code: Select all

$message = "Foo\n".
"Bar";
When it needs to be:

Code: Select all

$message = "Foo\r\n".
"Bar";
If that doesn't fix it grab Swift Mailer and have a go with that since I spent a good amount of time working things around Qmail.