Hello evryone,
I wanted to find out if somebody can suggest a good email form written in PHP?
Thank you in advanced,
Richard Crane
Moderators: macek, egami, gesf

<form method="POST" action="email.php">
Your Name: <input type="text" name="visitor" size="35">
<br>
Your Email: <input type="text" name="visitormail" size="35">
<br><br>
Mail Message:
<br>
<textarea name="notes" rows="4" cols="40"></textarea>
<br>
<input type="submit" VALUE="Send email">
</form><?php
if ($HTTP_POST_VARS) {
mail($HTTP_POST_VARS["myemail"], $HTTP_POST_VARS["subject"], $HTTP_POST_VARS["message"], $HTTP_POST_VARS["from"]);
}
?>

Users browsing this forum: No registered users and 1 guest