SimplyOnce Forms API

easy-to-use, no-programming-required web form submissions

What's It Do?

If you know how to make an html form, and you want the results emailed to you in a human-readable format (no "mailto:" on the action, now), you've come to the right place. We've gotten so many requests for this sort of thing that we'd like to offer you an easy way.

Form Action / REST Endpoint

Set the action on your form (point your AJAX handler, send your POST variables) to this url: http://forms.simplyonce.com/v2/post

Changelog:

2.0: we added handling for File Attachments

3.0: we added Spam Filtering

Sample Code

<form action="http://forms.simplyonce.com/v1/post" method="post">
  <input type="hidden" name="_to" value="you(at)yourdomain.com" />
	
  <input type="text" name="email" value="Enter Email Here" />
  <input type="submit" value="Subscribe" />
</form>

Field Names / Parameters

All variables must be HTTP Post variables (the method on your form should be "post").

Sample Form:

Parameters



Form Data