Below is some code that I have used to send an email Via mail. The message
sends with the correct data, HOWEVER my mail server don't like the header
and sends the email back to admin.

ROUTER: Failure delivering mail message to recipient: [EMAIL PROTECTED]
[ROUTER: Unexpected SMTP Server 'ihug.co.nz' [250] received: 550 Syntax
error in 'From' header: missing or malformed local part (expected word or
"<"): failing address is: Philip J. Newman]

Can anyone help with this

 $msg = "Thanks, $name.  Your entry had been added, Good Luck.";
 $msg .= "Email: $email.\n";
 $msg .= "Text: $address, $suburb.\n";
 $msg .= "Answer: $answer";

 $mailheaders = "From: Philip J. Newman\n";
 $mailheaders .= "Reply-To: [EMAIL PROTECTED]\n\n";

 mail("$email", "[Newman] Conformation of entry. ", $msg, $mailheaders);

Philip J. Newman
PhilipNZ :: Design Solutions
http://www.philipnz.com/
[EMAIL PROTECTED]
ICQ# 20482482
+64 25 6144012




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to