<form action="https://submitter.aniketgolhar.in/v1/your@email.com" method="POST">
Create a form, name your fields, and set the action to our endpoint. Confirm your email, and you're ready to receive submissions instantly!
Set your form’s action to our URL and start receiving submissions directly in your inbox.
<form action="https://submitter.aniketgolhar.in/v1/your@email.com" method="POST"></form>
Make sure every <input>, <select>, and <textarea> has a name attribute, this is how your form data gets captured and sent to your email.
<input type="email" name="email">
Submit your form once to trigger a confirmation email. Just click the link in that email to start receiving submissions.
Enhance your forms with special functionality by using name attributes that start with an underscore (_). These advanced options let you customize behavior without writing any code.
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">
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">
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">