Brad wrote:
> Thought it was a support forum!
> Support usually does not mean "piss off".
>
Brad,
another reading suggestion for you:
http://www.catb.org/~esr/faqs/smart-questions.html
/Per Jessen, Zürich
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.ph
Working code:
Correction - non-working code ;)
'.$eol;
$headers .= 'Bcc: [EMAIL PROTECTED]'; $eol = "\r\n";
This should be:
$headers .= 'Bcc: [EMAIL PROTECTED]' . $eol;
You need the EOL on the end.
Plus afaik in email headers it's \n not \r\n.
--
Postgresql & php tutorials
http://www.
2 matches
Mail list logo