I used the simple script from this website and it seemed to work ok except no mail gets sent. I know this script was used for at least two christmases to send mail. Is there a process that I need to run on the server to enable it to send mail because no mail is getting out ????? Im on a deadline for monday, any help would be appreciate!!!
testform.html:
<form method="post" action="sendmail.php">Email:
< input name="email" type="text" />Message:<textarea name="message" rows="10" cols="30">
</textarea><input type="submit" /></form>
sendmail.php:
<?$email = $_GET ;
$message = $_GET ;
mail( "susie_ewing@rocketmail.com", "Email Subject", $message, "From: $email" );
print "Congratulations your email has been sent";?>
Thanks!!