I have a slight problem. I am currently running on my intranet Apache web server and I am using PHP 4.0. I have tested it, and it works!🙂 But I am trying to accept form data and convert it into an email, but it isn't working. 🙁 Please help!!!!
Files:
Feeback.html:
<FORM method=post action="sendmail.php">
Email: <INPUT name="email" type="text"><br>
Message:<br>
<TEXTAREA name="message">
</textarea><br>
<input type=submit>
</FORM>
Sendmail.php:
<?
mail( "stan@croftmetals.com", "Feedback Form Results",
$message, "From: $email" );
header( "Location: http://www.wherever.com" );
?>