Auto Response

Send a customized auto-response email to your form submitters

How to setup

Auto Response integration allows you to send customised email notifications to your audience.

You need to make sure your form has at least one email field, for example:

<form action="https://nocodeform.io/f/{your-form-id}" method="POST">
  <input type="text" name="name">
  <input type="email" name="email">
  <button type="submit">Send</button>
</form>

TIP

NoCodeForm automatically scans your submissions data and find the email address

Then, open your Form on the Forms page, click on the Integrations tab and open the Auto Response settings.

Set the email notification subject and body Then click on Save to activate the integration.

SUCCESS

Congrats! Your Auto-response integration is now active.

Email subject and body

Auto Response body and subject fields are Mustache templates. body field supports some basic HTML tags as well.

You can inject your form inputs name between {{ }} tags. For example, if your form has a field named fullName, you can inject its value by adding {{fullName}} to your email body.

If you want to inject the form name in the subject or email body, use _formName, for example: {{_formName}}.

Example

Assuming this is your form:

<form action="https://nocodeform.io/f/{your-form-id}" method="POST" enctype="multipart/form-data">
  <input type="text" name="name">
  <input type="email" name="email">
  <input type="file" name="resume">
  <button type="submit">Send</button>
</form>

You can set this as your auto response subject:

We received your resume {{name}}!

And you can set this code as your body field:

<p>Thank you dear <strong>{{name}}</strong>, we have received your resume. We will get back to you soon.</p>

<p>Soylent Corp</p>