Connect your form to our form endpoint and we’ll email you the submissions.
No PHP,
Javascript or any backend code required.
<form action="https://formsinit.com/your@email.com" method="POST">
<input type="text" name="name" required>
<input type="email" name="email" required>
<button type="submit">Send</button>
</form>
Setup is easy and free. Design a form for your site, name your fields, and point the action to us!
Directly "Reply" to the email to respond to the person who submitted the form.
<input type="email" name="email">
Provide a custom "Thank You" page URL for redirection after submission.
<input type="hidden" name="_next" value="https://yoursite.com/thanks">
Customize the email's subject line for quick identification.
<input type="hidden" name="_subject" value="New Lead!">
Send a copy of each submission to other email addresses (comma separated).
<input type="hidden" name="_cc" value="team@site.com">
Filter out spam by disregarding submissions containing specific phrases.
<input type="hidden" name="_blacklist" value="spam, promo">
Send an instant automated response to your users after they submit.
<input type="hidden" name="_autoresponse" value="We got it!">
Trigger a webhook each time a form receives a new submission for real-time data handling.
<input type="hidden" name="_webhook" value="https://api.com/hook">
1. CONNECT YOUR FORM
Point the action-attribute of your form to our URL.
2. ADD NAME ATTRIBUTES
Include a name attribute in all form elements to receive the
data.
3. SEND AND CONFIRM
Submit once to trigger a confirmation email. That's it!