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

# Is valid email address

> Checks if the value is a valid email address.

export const FormField = ({property, label, required = false, diType, uiPatterns, children}) => {
  const patterns = Array.isArray(uiPatterns) ? uiPatterns : uiPatterns ? [uiPatterns] : [];
  return <div style={{
    margin: '1.5rem 0'
  }}>
      <div style={{
    display: 'flex',
    alignItems: 'baseline',
    flexWrap: 'wrap',
    gap: '0.5rem',
    marginBottom: '0.25rem'
  }}>
        <strong>{label}</strong>
        <span style={{
    fontSize: '0.7rem',
    fontWeight: 600,
    textTransform: 'uppercase',
    letterSpacing: '0.04em',
    color: required ? '#6241f5' : '#6b7280'
  }}>
          {required ? 'Required' : 'Optional'}
        </span>
      </div>

      <div>{children}</div>

      {diType || patterns.length > 0 ? <p style={{
    fontSize: '0.85rem',
    color: '#6b7280',
    marginBottom: 0
  }}>
          {diType ? <>
              See the <a href={`/references/${diType}`}>{diType}</a> reference.{' '}
            </> : null}
          {patterns.length > 0 ? <>
              Accepts a <a href={`/documentation/placeholders-and-patterns/patterns#${patterns[0]}`}>pattern</a>.
            </> : null}
        </p> : null}
    </div>;
};

Checks whether the incoming value is a valid email address. A value passes when it is shaped like an email address, with a name, an `@`, and a domain, for example `jane.doe@example.com`. Use this to confirm an email field is well-formed before you send a message or hand the address to another system, or to route records with a missing or malformed address down a different path. The check looks at the shape of the address only; it does not send anything or confirm the mailbox actually exists.

This documentation describes: [Schema](/schemas/condition/format-email)

## Fields

This condition has no fields to configure. It checks the value it receives and answers yes or no.

## Sample data

The condition was run against an email field with no extra settings.

| Incoming value         | Result         |
| ---------------------- | -------------- |
| `jane.doe@example.com` | Matches        |
| `jane.doe(at)example`  | Does not match |

```json Configuration theme={null}
{
  "prototype": "format-email",
  "parameters": {}
}
```
