Re: [PHP] What if this code is right ? It worked perfectly for years!!

2009-08-26 Thread Ben Dunlap
?  $fName = $_REQUEST['fName'] ;  $emailid = $_REQUEST['emailid'] ;    $number = $_REQUEST['number'] ;  $message = $_REQUEST['message'] ;  mail( ch...@gmail.com, $number, $message, From: $emailid );  header( Location: http://www.thankyou.com/thankYouContact.php; ); ? This is a bit of a

Re: [PHP] What if this code is right ? It worked perfectly for years!!

2009-08-24 Thread Ashley Sheridan
On Mon, 2009-08-24 at 09:12 -0700, Chris Carter wrote: Hi, The code below actually takes input from a web form and sends the fields captured in an email. It used to work quite well since past few years. It has stopped now. I used Google's mail servers (google.com/a/website.com) ?

Re: [PHP] What if this code is right ? It worked perfectly for years!!

2009-08-24 Thread Lars Torben Wilson
2009/8/24 Chris Carter chandan9sha...@yahoo.com: Hi, The code below actually takes input from a web form and sends the fields captured in an email. It used to work quite well since past few years. It has stopped now. I used Google's mail servers (google.com/a/website.com) ?  $fName =

Re: [PHP] What if this code is right ? It worked perfectly for years!!

2009-08-24 Thread Paul M Foster
On Mon, Aug 24, 2009 at 09:12:19AM -0700, Chris Carter wrote: Hi, The code below actually takes input from a web form and sends the fields captured in an email. It used to work quite well since past few years. It has stopped now. I used Google's mail servers (google.com/a/website.com)

RE: [PHP] What if this code is right ? It worked perfectly for years!!

2009-08-24 Thread Warren Vail
You are absolutely right, more information is needed. Many ISP's are changing port number assignments on their SMTP outgoing email to prevent abuse. A simple change like that could cause the email to not go out, and it has nothing to do with PHP. Warren Vail Vail Systems Technology

Re: [PHP] What if this code is right ? It worked perfectly for years!!

2009-08-24 Thread Ashley Sheridan
On Mon, 2009-08-24 at 12:26 -0400, Paul M Foster wrote: On Mon, Aug 24, 2009 at 09:12:19AM -0700, Chris Carter wrote: Hi, The code below actually takes input from a web form and sends the fields captured in an email. It used to work quite well since past few years. It has stopped

Re: [PHP] What if this code is right ? It worked perfectly for years!!

2009-08-24 Thread Chris Carter
Is there any alternative method to do this !!! Sending email through PHP? Paul M Foster wrote: On Mon, Aug 24, 2009 at 09:12:19AM -0700, Chris Carter wrote: Hi, The code below actually takes input from a web form and sends the fields captured in an email. It used to work quite well

Re: [PHP] What if this code is right ? It worked perfectly for years!!

2009-08-24 Thread Paul M Foster
On Mon, Aug 24, 2009 at 10:37:11AM -0700, Chris Carter wrote: Is there any alternative method to do this !!! Sending email through PHP? Sure. You can use a class like PHPMailer rather than the built-in mail() function. But it's not going to matter if the problem is at the mail server, etc.

Re: [PHP] What if this code is right ? It worked perfectly for years!!

2009-08-24 Thread Lars Torben Wilson
2009/8/24 Paul M Foster pa...@quillandmouse.com: On Mon, Aug 24, 2009 at 10:37:11AM -0700, Chris Carter wrote: Is there any alternative method to do this !!! Sending email through PHP? Sure. You can use a class like PHPMailer rather than the built-in mail() function. But it's not going to