Sorry I didn't know where to post it.
But this is what I'm using. It sends fine and goes straight to my e-mail but someone keeps sending blank forms and I want to make it so that the form wont be sent without the name and e-mail address being submitted.
Here is the form:
CODE
<INPUT TYPE="hidden" NAME="to" VALUE="me@e-mail.com">
<INPUT TYPE="hidden" NAME="form" VALUE="www.mysite.com">
<INPUT TYPE="hidden" NAME="admin" VALUE="me@e-mail.com">
<INPUT TYPE="hidden" NAME="language" VALUE="en"> <p>
<form action="http://www.hostmonster.com/monstermail" enctype="multipart/form-data" method="POST">
<b>Name</b>: <br>
<input type="text" name="Name"><br>
<b>Email</b>: <br>
<input type="text" name="mailfrom"><br>
<b>Site Url</b>: <br>
<input type="text" name="Site Url:"><br>
<b>Message</b>:<br>
<TEXTAREA NAME="Message:" ROWS="6" COLS="32" > </TEXTAREA> <br>
<input type="hidden" name="sendtoemail" value="me@e-mail.com"><br>
<input type="hidden" name="redirect" value="http://www.mysite.com/thanks.php" target="main">
<input type="hidden" name="subject" value="Contact">
<input type="submit" value="Send">
</form>