How does it work?
The hassle-free way to use HTML forms and notifications.
Just add our URL and your token to your form action
and VOILA! we'll take care of all of your form submissions. No PHP, no Javascript, no server-side coding. Simply create a form, route the form through us, and receive
the the responses via email. You want more? Check out what you can do with our pro features.
<!-- Here is your form -->
<form class="forming" action="//www.enformed.io/YOUR_TOKEN" method="post">
<div class="form-group">
<label for="name">First Name</label>
<input type="text" class="form-input" name="name" />
</div>
<div class="form-group">
<label for="email">Email Address</label>
<input type="email" class="form-input" name="email" />
</div>
</form>
How do I set it up?
All you need to do is send your form submissions to our server and use the token we give you. We'll notify you of the submission and provide dashboards and reports for all your form submissions.
-
Sign up
Create a username and password and we'll send you an activation link. After that, you're ready to go.
-
Point your form to us
Just point your
form
action attribute to our servers and use the token we give you so we know where to route the submission.<form action="https://www.enformed.io/YOUR_TOKEN" >
-
Add a "name" to each form element.
Now, just add a name attribute to each
input
,select
andtextarea
that you use in your form.<div class="form-group"> <label for="firstName">Name</label> <input name="firstName" type="text" class="form-control"/> </div>
-
Submit the form
Whenever someone submits your form, we will receive the information, package it up in a pretty email, and send it your way. If you want submission history and analytics, we've got that, too.
<!-- Submit your form --> <button type="submit" class="form-group">Submit Me</button> <input type="submit" value="Finish!" />
-
Receive emails
You are all set. Now, kick back, relax, and wait for the responses to start rolling in.