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.
Navigate to your Jamform dashboard to get started.
On your dashboard, you'll find a unique "Form endpoint" URL. This is the endpoint where your form submissions will be sent.
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.
name
attribute.name
attribute acts as the key, and the user input as the value.This means you'll receive an email with all the form data neatly organized, based on the field names set in your form.
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.