Form Setup

Setting up your form with Jamform is straightforward. Follow these steps to integrate your form with Jamform and start receiving submissions in your email inbox.

Setting Up Your Form

  1. Navigate to your Jamform dashboard to get started.

  2. On your dashboard, you'll find a unique "Form endpoint" URL. This is the endpoint where your form submissions will be sent.

  3. Configure Your Form:

    a. On the HTML form on your site, set the action attribute to your Jamform endpoint URL.

    b. Ensure the form's method attribute is set to POST.

    Example HTML:

    <form action="YOUR_JAMFORM_ENDPOINT" method="post">
      <!-- Form fields go here -->
      <input type="text" name="exampleField" placeholder="Example Field" />
      <button type="submit">Submit</button>
    </form>
    

    Note: Replace "YOUR_JAMFORM_ENDPOINT" with the actual endpoint URL from your dashboard.

Understand Form Field Processing:

  • Each input field in your form should have a name attribute.
  • The name attribute acts as the key, and the user input as the value.
  • When a user submits the form, all field names (keys) and their corresponding values are forwarded to your email inbox.

This means you'll receive an email with all the form data neatly organized, based on the field names set in your form.

Submission limitations

Each form submissions can contain a maximum of 10MB of data between form fields and file attachments. If the submission size is over this limit the user will see an error page and the submission will no count against your usage.