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.
Set the action on your form (point your AJAX handler, send your POST variables) to this url:
http://forms.simplyonce.com/v2/post
2.0: we added handling for File Attachments
3.0: we added Spam Filtering
<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>
Comma-delimited list of email addresses to which to send the results.
You can even use (at) instead of @ to stop spambots in their tracks!
<input type="hidden" name="_to" value="you@yourdomain.com,5551234567@txt.att.net" />
Subject for the email sent with the results.
<input type="hidden" name="_subject" value="Form Submission Via forms.simplyonce.com" />
<input type="hidden" name="_return" value="referer" />
NOTE: For url redirects, we'll append a GET parameter telling whether it worked ( url?stat=success ) or failed ( url?stat=fail )
<input type="hidden" name="_format" value="text" />
<input type="hidden" name="_sort" value="false" />
<input type="file" name="filename" />
NOTE: Make sure to set your form's "enctype" attribute to "multipart/form-data"!