Emailable Verify
emailable_verifyVerify whether an email address is deliverable (jane@stripe.com) — deliverability state, quality score, disposable/role/free flags, and typo suggestions. Uses Emailable's SMTP-level check (state is one of deliverable/undeliverable/risky/unknown; score is 0-100). A slow SMTP check can take up to 10s — that is expected. Example: emailable_verify({ email: "jane@stripe.com", apiKey: "live..." })
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| smtp | No | Whether to run the live SMTP deliverability check (default true). Disable to return faster, lower-confidence results. | |
| Yes | Email address to verify, e.g. "jane@stripe.com" | ||
| _apiKey | Yes | Your Emailable LIVE API key (format "live_..."). Get one at emailable.com. Use a `live_` key — `test_` keys return fake data. | |
| timeout | No | SMTP timeout in seconds, 2-10 (default chosen by Emailable). A slow SMTP check can take up to 10s. | |
| accept_all | No | Whether to run the accept-all (catch-all) detection check. |