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 = $_REQUEST['fName'] ;
$emailid = $_REQUEST['emailid'] ;
$number = $_REQUEST['number'] ;
$message = $_REQUEST['message'] ;
mail( "[email protected]", $number, $message, "From: $emailid" );
header( "Location: http://www.thankyou.com/thankYouContact.php" );
?>
This is the simplest one, how could it simply stop? Any help would be
appreciated, I have already lost 148 queries that came through this form.
Thanks in advance,
Chris
--
View this message in context:
http://www.nabble.com/What-if-this-code-is-right---It-worked-perfectly-for-years%21%21-tp25118874p25118874.html
Sent from the PHP - General mailing list archive at Nabble.com.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php