Re: [PHP] / [Newman] When i send an email it ...

2003-06-15 Thread jb
I think you need a \r\n between the headers, Philip J. Newman wrote: My code is this ... // MAIL HEADERS. $headers = "X-Priority: 1\n"; $headers .= "Return-path: <[EMAIL PROTECTED]>\n"; $headers .= "From: \"Philip Newman\" <[EMAIL PROTECTED]>\n";

Re: [PHP] / [Newman] When i send an email it ...

2003-06-15 Thread Philip J. Newman
: "Michael Geier" <[EMAIL PROTECTED]> To: "Philip J. Newman" <[EMAIL PROTECTED]> Cc: "PHP" <[EMAIL PROTECTED]> Sent: Monday, June 16, 2003 2:56 PM Subject: Re: [PHP] / [Newman] When i send an email it ... > The error is your answer. The server

Re: [PHP] / [Newman] When i send an email it ...

2003-06-15 Thread Michael Geier
The error is your answer. The server is setup to relay mail for specific domains/users. Evidently, the user "[EMAIL PROTECTED]" is not one of those users/domains. If you are the administrator for this box, check your documentation for your specific SMTP server for setting relay for that domai

Re: [PHP] / [Newman] When i send an email it ...

2003-06-15 Thread Philip J. Newman
My code is this ... \n"; $headers .= "From: \"Philip Newman\" <[EMAIL PROTECTED]>\n"; $headers .= "Reply-To: \"[EMAIL PROTECTED]" <[EMAIL PROTECTED]>\n"; $msg = "Dear $mUserName,\n\n"; $msg .= "You have requested a user account on Untouched.

[PHP] [Newman] When i send an email it ...

2003-06-15 Thread Jason Marks
When i send an email i get the following error. Warning: mail() [function.mail]: SMTP server response: 550 , Sender unknown in D:\Hosting\Crushme\includes\inc_register.php on line 138 Is this a server or a PHP error? / Philip