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

> ## Agent Instructions
> Automate.ax automations are TypeScript programs.
> Use Bun for installation and command examples.
> Use Automate.ax for the product name and automate.ax for the package, CLI, and domain.
> Treat documented public APIs as current; do not invent transitional or deprecated names.

# Verify email

> Validate one email address with MillionVerifier's real-time API.

`millionVerifier.verifyEmail` checks one email address and returns MillionVerifier's normalized result.

```ts automations/millionverifier-verify-email.automation.ts theme={null}
import { automation, onDashboardRun } from "automate.ax"
import { millionVerifier } from "automate.ax/millionverifier"

export default automation("Verify email", () => {
  onDashboardRun({ title: "Verify email" })
  millionVerifier.verifyEmail({ email: "ada@example.com" })
})
```

## Inputs

Provide `email`. `timeoutSeconds` defaults to 20 and accepts 2–60 seconds. An optional second argument `{ account }` selects a named MillionVerifier binding.

## Output

Returns the normalized email, result, result code, provider sub-result, remaining credits, suggestion, quality when supplied, free and role flags, live-mode flag, and execution time in milliseconds. Results include `ok`, `catchAll`, `unknown`, `disposable`, `invalid`, `unverified`, and `error`.

Each call consumes provider credits, including retries or repeated checks of the same address. The action therefore does not retry automatically after an indeterminate failure.
