Re: [PHP] php mail() error

2004-11-14 Thread Manuel Lemos
Hello, On 11/14/2004 03:49 AM, Curt Zirzow wrote: Requiring authentication is one common solution to not leave relaying opened. Common but not the *only* way. That is irrelevant because most servers that issue the message above only allow relaying with prior authentication. FYI, the class that I

Re: [PHP] php mail() error

2004-11-13 Thread Curt Zirzow
* Thus wrote Manuel Lemos: > Hello, > > On 11/14/2004 02:15 AM, Curt Zirzow wrote: > >>>If you even paid attention to Jason's message a simple google > >>>search for: > >>> > >>>smtp 550 5.7.1 unable to rely for > >>> > >>>returns a bunch more information than spam. > >> > >>FYI, that is a common

Re: [PHP] php mail() error

2004-11-13 Thread Manuel Lemos
Hello, On 11/14/2004 02:15 AM, Curt Zirzow wrote: If you even paid attention to Jason's message a simple google search for: smtp 550 5.7.1 unable to rely for returns a bunch more information than spam. FYI, that is a common error message that SMTP servers return when they only allow relaying messa

Re: [PHP] php mail() error

2004-11-13 Thread Curt Zirzow
* Thus wrote Manuel Lemos: > Hello, > > On 11/13/2004 04:08 AM, Curt Zirzow wrote: > >* Thus wrote Jason Wong: > > > >>On Wednesday 10 November 2004 12:36, Garth Hapgood - Strickland wrote: > >> > >>>But when I get the following error back.: > >>> Warning: mail(): SMTP server response: 550 5.7.1 U

Re: [PHP] php mail() error

2004-11-13 Thread Curt Zirzow
* Thus wrote Manuel Lemos: > Hello, > > On 11/14/2004 01:29 AM, Curt Zirzow wrote: > > > >If you even paid attention to Jason's message a simple google > >search for: > > > > smtp 550 5.7.1 unable to rely for > > > >returns a bunch more information than spam. > > FYI, that is a common error mess

Re: [PHP] php mail() error

2004-11-13 Thread Manuel Lemos
Hello, On 11/14/2004 01:29 AM, Curt Zirzow wrote: But when I get the following error back.: Warning: mail(): SMTP server response: 550 5.7.1 Unable to relay for [EMAIL PROTECTED] ... This is a VERY FAQ. googling the error message will tell you what it means. Searching the archives> will give you s

Re: [PHP] php mail() error

2004-11-13 Thread Manuel Lemos
Hello, On 11/13/2004 04:08 AM, Curt Zirzow wrote: * Thus wrote Jason Wong: On Wednesday 10 November 2004 12:36, Garth Hapgood - Strickland wrote: But when I get the following error back.: Warning: mail(): SMTP server response: 550 5.7.1 Unable to relay for [EMAIL PROTECTED] ... This is a VERY FAQ.

Re: [PHP] php mail() error

2004-11-12 Thread Curt Zirzow
* Thus wrote Jason Wong: > On Wednesday 10 November 2004 12:36, Garth Hapgood - Strickland wrote: > > But when I get the following error back.: > > Warning: mail(): SMTP server response: 550 5.7.1 Unable to relay for > > [EMAIL PROTECTED] > > > >... > > This is a VERY FAQ. > > googling the erro

RE: [PHP] php mail() error

2004-11-10 Thread Zareef Ahmed
PROTECTED] Subject: Re: [PHP] php mail() error On Wed, 10 Nov 2004 23:14:43 +, Jason Wong <[EMAIL PROTECTED]> wrote: > Or you can wait for Manuel Lemos' reply :) Good one. :) -- Greg Donald Zend Certified Engineer http://gdconsultants.com/ http:

RE: [PHP] php mail() error

2004-11-10 Thread Zareef Ahmed
Hi, Problem is realted to your smtp server. Make sure it allowed outgoing mail without authenctication. You must also set a header in fourth parameter of mail function, it is good practice and can save you from some basic indentification problems. In windows you can set default send mail from

Re: [PHP] php mail() error

2004-11-10 Thread John Holmes
Garth Hapgood - Strickland wrote: > But when I get the following error back.: Warning: mail(): SMTP server response: 550 5.7.1 Unable to relay for [EMAIL PROTECTED] Can someone help me out, by telling me what it means or what Im doing wrong? Your mail server is not set up to send mail from (or r

Re: [PHP] php mail() error

2004-11-10 Thread Greg Donald
On Wed, 10 Nov 2004 23:14:43 +, Jason Wong <[EMAIL PROTECTED]> wrote: > Or you can wait for Manuel Lemos' reply :) Good one. :) -- Greg Donald Zend Certified Engineer http://gdconsultants.com/ http://destiney.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: h

Re: [PHP] php mail() error

2004-11-10 Thread Jason Wong
On Wednesday 10 November 2004 12:36, Garth Hapgood - Strickland wrote: > Im using the php mail() function to try send an email to a user that has > just registered. > > mail($HTTP_POST_VARS['emailaddress1'], 'Matchmakers Website Registration' , > 'Welcome'); > > But when I get the following error b