I am using this script:
<?
$email = $_REQUEST['email'] ;
$message = $_REQUEST['message'] ;
mail( "[email protected]", "Feedback Form Results",
$message, "From: $email" );
header( "Location: <!-- m --><a class="postlink" href="http://www.barcoderesale.com/thankyou.html">http://www.barcoderesale.com/thankyou.html</a><!-- m -->" );
?>
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( "[email protected]", "Feedback Form Results",
$message, "From: $email" );
header( "Location: <!-- m --><a class="postlink" href="http://www.barcoderesale.com/thankyou.html">http://www.barcoderesale.com/thankyou.html</a><!-- m -->" );
?>
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