Q1: How do I set up FormMail?

Answer

Follow these steps to set up FormMail:

  1. Upload the script:
    Upload formmail.pl to /cgi-bin/
  2. Set permissions:
    chmod 755 formmail.pl
  3. Configure allowed recipients:
    @referers = ('yourdomain.com');
    @recipients = ('[email protected]');
  4. Create your HTML form:
    <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>
Back to FormMail FAQ Next Question