Follow these steps to set up FormMail:
Upload formmail.pl to /cgi-bin/
chmod 755 formmail.pl
@referers = ('yourdomain.com');
@recipients = ('[email protected]');
<form action="/cgi-bin/formmail.pl" method="post">
<input type="hidden" name="recipient" value="[email protected]">
<input type="hidden" name="subject" value="Contact Form">
<!-- Your form fields -->
<input type="submit" value="Send">
</form>