Number of users using Simpleform Number of Messages served
275 2066

What is Simple Form?

Simple Form allows you to setup forms with any kind of data (including file uploads) in 2 easy steps:

  1. Setup your form using the following code:
          <form action="http://getsimpleform.com/messages?form_api_token=<form_api_token>" method="post">
    
            <!-- the redirect_to is optional, the form will redirect to the referrer on submission -->
            <input type='hidden' name='redirect_to' value='<the complete return url e.g. http://fooey.com/thank-you.html>' />
    
            <!-- all your input fields here.... -->
            <input type='text' name='test' />
    
            <input type='submit' value='Test form' />
          </form>
        
  2. Start tracking your form submissions from this url: http://getsimpleform.com/messages?api_token=<api_token> You will also get an email whenever a new form entry is made. You can even access your messages via JSON at http://getsimpleform.com/messages.json?api_token=<api_token>
  3. Add spam prevention using Akismet

Try out the Demo form!