pcsource
10-20-2005, 06:48 PM
I am using this script:
<?
$email = $_REQUEST['email'] ;
$message = $_REQUEST['message'] ;
mail( "sales@barcoderesale.com", "Feedback Form Results",
$message, "From: $email" );
header( "Location: http://www.barcoderesale.com/thankyou.html" );
?>
I was using this on 2000Pro and it worked fine. I then put this same one on Server 2003 and the thankyou.html comes up after submitting but no email is sent. I am using this server only as a web server. Thank you for any help you can provide.
Steve
<?
$email = $_REQUEST['email'] ;
$message = $_REQUEST['message'] ;
mail( "sales@barcoderesale.com", "Feedback Form Results",
$message, "From: $email" );
header( "Location: http://www.barcoderesale.com/thankyou.html" );
?>
I was using this on 2000Pro and it worked fine. I then put this same one on Server 2003 and the thankyou.html comes up after submitting but no email is sent. I am using this server only as a web server. Thank you for any help you can provide.
Steve