> ## 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.

# Validate form emails

> Collect accurate data with real-time email validation. Disallow free email accounts (e.g. Gmail) or only allow valid email addresses, based on an external database check.

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 validate business emails

First, add an `Email` field to your form and click its <Icon icon="gear-complex" iconType="solid" /> to open the right-hand panel settings.

<img src="https://mintcdn.com/fillout-005a867b/fsqjFDU5bo8bvc6C/images/Screenshot2025-11-05at3.56.13PM.png?fit=max&auto=format&n=fsqjFDU5bo8bvc6C&q=85&s=dc26ef94155554d97a934bb64993e5c6" alt="Screenshot 2025-11-05 at 3.56.13 PM.png" width="1937" height="443" data-path="images/Screenshot2025-11-05at3.56.13PM.png" />

Head to the **Enrich** section where you can:

* **Disallow free email accounts** - to block free email accounts (e.g., @yahoo.com, @gmail.com, and @hotmail.com) and require business or org emails only
* **Validate email addresses** - to only allow valid emails to be submitted. Fillout calls a third party service to check if the email is valid. This helps prevent typos, like if someone types [jeff@amazon.co](mailto:jeff@amazon.co) instead of [jeff@amazon.com](mailto:jeff@amazon.com)
* **Enrich with Apollo** - route leads to different pages based on company details. More info [here](https://www.fillout.com/help/lead-enrichment).
* **Send verification code** - to send OTPs to emails or phone numbers. Check out the guide [here](/help/email-sms-otp).

Validation rules are enforced when a respondent tries to proceed to the next page.

<img src="https://mintcdn.com/fillout-005a867b/fsqjFDU5bo8bvc6C/images/Screenshot2025-11-05at4.00.07PM.png?fit=max&auto=format&n=fsqjFDU5bo8bvc6C&q=85&s=90784dec4e8dd24ab9cadc9078f2419b" alt="Screenshot 2025-11-05 at 4.00.07 PM.png" title="Screenshot 2025-11-05 at 4.00.07 PM.png" style={{ width:"72%" }} width="1206" height="436" data-path="images/Screenshot2025-11-05at4.00.07PM.png" />

<Info>
  Email validation is part of the conversion kit paid add-on. Learn more and get started [here](https://www.fillout.com/conversion-kit).
</Info>

## Related article

<CardGroup cols={3}>
  <Card title="OTP verification" color="#FFC738" icon="binary-circle-check" iconType="regular" href="/help/email-sms-otp">
    Ensure valid responses with email or SMS verification.
  </Card>
</CardGroup>

<SupportBanner />
