$email = [EMAIL PROTECTED] example

----- Original Message -----
From: "Miguel Cruz" <[EMAIL PROTECTED]>
To: "Philip J. Newman" <[EMAIL PROTECTED]>
Cc: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>
Sent: Wednesday, March 27, 2002 11:14 AM
Subject: Re: [PHP] Problem sending email message, from Newman.


> Can you show the contents of the variable $email ?
>
> miguel
>
> On Wed, 27 Mar 2002, Philip J. Newman wrote:
>
> > 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);
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>
>




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

Reply via email to