Re: [PHP] I have a problem with nobody! SOLVED!

2007-06-17 Thread Robert Cummings
On Sun, 2007-06-17 at 12:56 +0100, Stut wrote: > tedd wrote: > > > > $headers ='From: "Larry, Curly and Moe"<[EMAIL PROTECTED]>')>\n"; > > $headers .= 'Reply-to: "Moe"<[EMAIL PROTECTED]>' >\n"; > > Strictly speaking, those line endings should be \r\n. While I agree with you that it "should" be \

Re: [PHP] I have a problem with nobody! SOLVED!

2007-06-17 Thread Stut
tedd wrote: >> The last paragraph of the page >> >> Go figure! >> >> The appropriate code is; >> >> mail ($to, $subject, $message, $header = 'From: "Larry, Curly and Moe" >> <[EMAIL PROTECTED]>'); > > Brad: > > Don't forget to add the content. > > mail($to, $subject, $headers, $body); Headers a

RE: [PHP] I have a problem with nobody! SOLVED!

2007-06-17 Thread tedd
The last paragraph of the page Go figure! The appropriate code is; mail ($to, $subject, $message, $header = 'From: "Larry, Curly and Moe" <[EMAIL PROTECTED]>'); Brad: Don't forget to add the content. mail($to, $subject, $headers, $body); And you can also add "Reply-to: " Such as: $header

Re: [PHP] I have a problem with nobody! SOLVED!

2007-06-17 Thread Stut
be included. It sets the envelope sender which is the address the email will get bounced to if necessary. -Stut > -Original Message- > From: BSumrall [mailto:[EMAIL PROTECTED] > Sent: Sunday, June 17, 2007 12:39 AM > To: php-general@lists.php.net > Subject: RE: [PHP] I ha

RE: [PHP] I have a problem with nobody!

2007-06-16 Thread Robert Cummings
gt; PS > mail ($to, $subject, $message, $header, '-f > [EMAIL PROTECTED]'); > > doesn't work either. > > Still have nobody to deal with. > As per being RFC compliant! > > -Original Message- > From: Stut [mailto:[EMAIL PROTECTED] > Sent:

RE: [PHP] I have a problem with nobody! SOLVED!

2007-06-16 Thread BSumrall
7 12:39 AM To: php-general@lists.php.net Subject: RE: [PHP] I have a problem with nobody! Let's take it one step further for arguments sake. What is I wanted to change "nobody" as the sender to, let's just say Larry or Curly, or Moe? Making message header as; Larry Shmuckatelli [

RE: [PHP] I have a problem with nobody!

2007-06-16 Thread BSumrall
PROTECTED] What is the php driving force that controls the "who sent me" function? -Original Message- From: BSumrall [mailto:[EMAIL PROTECTED] Sent: Sunday, June 17, 2007 12:31 AM To: php-general@lists.php.net Subject: RE: [PHP] I have a problem with nobody! Well, I am now 1 st

RE: [PHP] I have a problem with nobody!

2007-06-16 Thread BSumrall
] Using: mail ($to, $subject, $message, $header, '[EMAIL PROTECTED]'); -Original Message- From: BSumrall [mailto:[EMAIL PROTECTED] Sent: Sunday, June 17, 2007 12:19 AM To: 'Stut' Cc: php-general@lists.php.net Subject: RE: [PHP] I have a problem with nobody! PS mai

RE: [PHP] I have a problem with nobody!

2007-06-16 Thread BSumrall
l@lists.php.net Subject: Re: [PHP] I have a problem with nobody! BSumrall wrote: > I have read about a -f function. > I tried > mail ($to, $subject, $message, -f$header); > mail -f($to, $subject, $message, $header); > > both result in parse error. Boy did you not read the d

Re: [PHP] I have a problem with nobody!

2007-06-16 Thread Stut
BSumrall wrote: > I have read about a -f function. > I tried > mail ($to, $subject, $message, -f$header); > mail -f($to, $subject, $message, $header); > > both result in parse error. Boy did you not read the documentation carefully! mail($to, $subject, $message, $headers, '[EMAIL PROTECTED]');

[PHP] I have a problem with nobody!

2007-06-16 Thread BSumrall
I have been googling this to death and have many references to this, but all solutions seem to either 1 not apply 2 result in parse error The code: mail ($to, $subject, $message, $header); The error Email is sent to recipient as [EMAIL PROTECTED] (fqdn = fully qualified domain name) I have rea