Here's one we used often. If your hosting package won't support FormMail, or if you have other questions, feel free to contact me.
You can see an example of this recipe here:
http://sojournmedia.com/contact.htm
<form action="http://yourwebsite.com/cgi-sys/FormMail.pl" method="Post" name="contact" id="contact">
<input type="hidden" name="recipient" value="place_your_email_address_here">
<input type="hidden" name="subject" value="Contact Information Request">
<input type="hidden" name="required" value="name,email">
<br>
<table width="425" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="100" valign="middle" scope="col"><div align="right">* Name:Â ;</div></td>
<th width="325" scope="col"><div align="left">
<input name="name" type="text" id="name" size="34" maxlength="50">
</div></th>
</tr>
<tr>
<td valign="middle"><div align="right">* Email:Â ;</div></td>
<td><div align="left">
<input name="email" type="text" id="email" size="34" maxlength="52">
</div></td>
</tr>
<tr>
<td valign="middle"><div align="right">Telephone:Â ;</div></td>
<td><div align="left">
<input name="telephone" type="text" id="telephone" size="34" maxlength="18">
</div></td>
</tr>
<tr>
<td valign="middle"><div align="right">Comments:Â ;</div></td>
<td><div align="left">
<textarea name="comments" cols="26" rows="5" id="comments"></textarea>
</div></td>
</tr>
</table>
<table width="425" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="45" valign="bottom"><div align="center">
<input type="submit" name="submit" value="Submit">
</div></td>
</tr>
</table>
</form>