To do that:
<HTML>
<form name="contact" method="POST"action="process.php">
<p>Your Name:<br>
<input type="text" size="45" name="name">
<br>
Your E-Mail Address:<br>
<input type="text" size="45" name="email"><br>
Subject<br><select name="Subject">
<option value=" Request a service ">Request a service </option>
<option value=" Order a template ">Order a template </option>
<option value=" Report a bug ">Report a bug </option>
<option value=" Become an affiliate ">Become an affiliate </option>
<option value=" Webmaster ">Webmaster </option>
</select><br>Your Messsage:<br><textarea name="message" rows="7" cols="50"></textarea><br><input name="send" type="submit" value="Send"></td></p></form>
Then make a file called process.php and put this in it:
<?
$to =
[email protected];
$from = $_POST[email];
$subject = $_POST[subject];
$message = $_POST[message];
mail ("$to", "$subject", "$message", "From: Contact Form<$subject>");
echo ("You have successfully contact us<BR><BR><BR><BR>Coded By Atomic Network Productions");
?>
+rep plz ;)
Php because im lazy mwuaha