> ## Documentation Index
> Fetch the complete documentation index at: https://fillout.com/help/llms.txt
> Use this file to discover all available pages before exploring further.

# Respondent notification email

> Automatically email respondents a copy of their answers that they can edit later on.

export const SupportBanner = () => {
  const titleId = React.useId();
  return <div className="support-banner" role="region" aria-labelledby={titleId}>
      <span className="support-banner__ring support-banner__ring--outer" aria-hidden="true" />
      <span className="support-banner__ring support-banner__ring--middle" aria-hidden="true" />
      <span className="support-banner__ring support-banner__ring--inner" aria-hidden="true" />
      <span className="support-banner__ring support-banner__ring--center" aria-hidden="true" />

      <div className="support-banner__content">
        <div className="support-banner__title" id={titleId} role="heading" aria-level="2">Still have questions?</div>

        <div className="support-banner__copy">
          <span className="support-banner__line">Our team is happy to help. Start a live chat using the</span>
          <span className="support-banner__line">
            chat bubble <span className="support-banner__chat-icon" aria-hidden="true" /> in the bottom right, or email us at
          </span>
          <span className="support-banner__line">
            <a href="mailto:support@fillout.com">support{'@'}fillout.com</a>
          </span>
        </div>

        <a className="support-banner__cta" href="mailto:support@fillout.com">Contact us</a>
      </div>
    </div>;
};

## How to enable respondent notifications

Open your form. Then, click settings <Icon icon="gear-complex" /> in the upper right section.

<img src="https://mintcdn.com/fillout-005a867b/vShLuVnQNrEulOf_/images/Screenshot2025-10-10at7.29.35PM.png?fit=max&auto=format&n=vShLuVnQNrEulOf_&q=85&s=6b59d0d5ebac8b417d675066e3641e90" alt="Screenshot 2025-10-10 at 7.29.35 PM.png" title="Screenshot 2025-10-10 at 7.29.35 PM.png" style={{ width:"47%" }} width="743" height="136" data-path="images/Screenshot2025-10-10at7.29.35PM.png" />

Next, toggle `Respondent notifications`.

<img src="https://mintcdn.com/fillout-005a867b/f5mAHX7l8nm93ZII/images/Screenshot2025-10-07at3.19.35PM.png?fit=max&auto=format&n=f5mAHX7l8nm93ZII&q=85&s=82496f64e874f11ffd2ecbda07957a5e" alt="Screenshot 2025-10-07 at 3.19.35 PM.png" width="2550" height="901" data-path="images/Screenshot2025-10-07at3.19.35PM.png" />

You can toggle `Include a link to edit submission` to allow your respondents to revise their answers later on.

That's it! Respondents will now automatically receive an email notification upon submission containing a summary of their responses like the one below.

<Warning>
  Make sure you have an **Email Address** field in your form so that Fillout knows where to send the respondent email to.
</Warning>

## Tailor messages depending on the response

You can send a different message to a group of respondents depending on the answers they have provided in the form through **Custom emails**.

<img src="https://mintcdn.com/fillout-005a867b/f5mAHX7l8nm93ZII/images/Screenshot2025-10-07at3.20.09PM.png?fit=max&auto=format&n=f5mAHX7l8nm93ZII&q=85&s=257a0b2801358da2f63a8a040a402533" alt="Screenshot 2025-10-07 at 3.20.09 PM.png" width="2547" height="544" data-path="images/Screenshot2025-10-07at3.20.09PM.png" />

Choose `Send email only if conditions match`. Check out this quick [guide](https://www.fillout.com/help/custom-emails#send-different-messages-based-on-responses).

## Customize email

You can edit the default message and subject, and style its contents. More info [here](https://www.fillout.com/help/custom-emails#style-your-email).

## Related articles

<CardGroup cols={3}>
  <Card title="Email your form" icon="envelope" iconType="regular" color="#FFC738" href="/help/email-form">
    Send a form by email to collect info, and track submissions.
  </Card>

  <Card title="Answer piping" icon="wand-magic-sparkles" iconType="regular" color="#FFC738" href="/help/answer-piping">
    Insert previous answers into upcoming questions or fields.
  </Card>

  <Card title="Custom emails" icon="envelope-open-text" iconType="regular" color="#FFC738" href="/help/custom-emails">
    Automate sending, pipe previous answers, and style your email.
  </Card>
</CardGroup>

<SupportBanner />
