SUBMITTER DOCUMENTATION

1. submitter_replyto

In SUBMITTER, you can make replies effortless by setting the user's email as the Reply-To address. Just include a field for their email, and you’ll be able to respond directly from your inbox.

<input type="hidden" name="submitter_replyto" value="true">

To enable this feature in SUBMITTER, simply add an email field to your form to capture the user’s address.

<input type="email" name="email">

2. submitter_subject

Use this value in SUBMITTER to set a custom email subject, making it easy to identify and reply to form submissions without changing the subject manually.

<input type="hidden" name="submitter_subject" value="Your custom subject">

3. submitter_cc

In SUBMITTER, use this value to set the email's CC field perfect for sending a copy of each form submission to another recipient automatically.

<input type="hidden" name="submitter_cc" value="example@email.com">

To CC multiple recipients in SUBMITTER, simply list all email addresses separated by commas ",". Each one will receive a copy of the form submission.

<input type="hidden" name="submitter_cc" value="example@email.com,another@email.com">

4. submitter_autorespond

With SUBMITTER, you can instantly send users a copy of their submission along with a personalized message, perfect for confirmations or thank-you notes.

<input type="hidden" name="submitter_autorespond" value="Your custom message">

To enable this feature in SUBMITTER, simply add an email field to your form to capture the user’s address.

<input type="email" name="email">

5. submitter_template

SUBMITTER offers 3 email templates to choose from. The basic template is used by default, but you can easily switch to the one that best fits your style.

<input type="hidden" name="submitter_template" value="basic">

View more submitter templates

6. submitter_webhook

With SUBMITTER, you can set up a webhook that fires whenever a new form submission is received directly in your inbox. This is perfect for enabling real-time data handling, integrations, and automation.

<input type="hidden" name="submitter_webhook" value="https://your-domain.com/webhook-endpoint">

Here’s a sample webhook JSON payload sent by SUBMITTER on your webhook endpoint:

{
    "formData": {
      "name": "John Doe",
      "email": "Bxq0s@example.com",
      "message": "Hello, this is a test message."
    },
    "formTimestamp": "2025-12-08 10:17:05"
  }

7. File Upload

SUBMITTER supports native file uploads, letting you collect pdf or images files easily—perfect for info that can’t be captured by text fields alone.

Remember to add enctype="multipart/form-data" in your form tag to enable file uploads.

<form action="https://submitter.aniketgolhar.in/v1/your@email.com" method="POST" enctype="multipart/form-data">
      <input type="email" name="email" placeholder="Your email">
      <textarea name="message" placeholder="Your message"></textarea>
      <input type="file" name="attachment" accept=".pdf, .png, .jpg, .jpeg">
      <button type="submit">Submit</button>
  </form>

* Note: you can upload a single file per form submission, and the file size must not exceed 2MB.

8. AJAX Submission

With SUBMITTER, you can submit forms via AJAX seamlessly, with your users stay on the page, and it even supports cross-origin requests effortlessly.

$.ajax({
      url: "https://submitter.aniketgolhar.in/v1/your@email.com",
      method: "POST",
      data: {
          name: "FormSubmit",
          message: "I'm from Devro LABS"
      },
      dataType: "json"
  });
  

Example for fetch, axios, jQuery : View More

Create Unlimited Forms and Collect Unlimited Responses

Build as many forms as you want tied to one email, and receive endless submissions without limits.

Easily Retrieve Your Submission History

Missed a submission? Access your complete, timestamped submission archive anytime via our free API. The API is limited to 2 calls per day.

Submissions are kept for 30 days. Uploaded files aren’t stored or available through the API.