Email Tools
SMTP-verified professional email finding
The Email category is the email-finding surface. get_email takes a person’s name and a company domain, generates every common pattern (first@, first.last@, flast@, f.last@, etc.), and confirms the real mailbox without sending mail.
get_email requires the GTM Tools browser extension to be connected. It confirms Google Workspace mailboxes (the largest provider) through a logged-in Google session shared via the extension. If no session is connected, the tool returns setup instructions instead of running. Install it and press Connect once per workspace.
Tools
get_email
Response fields
When the domain is catch-all
Catch-all domains accept SMTP traffic for every local-part, so verification can’t disambiguate the true address. Rather than hand back a guess that might silently bounce, get_email stays strict:
If you want to act anyway, generate the dominant pattern yourself and treat it as a hypothesis: cross-check against LinkedIn, and prefer a channel where being wrong is cheap. Every reason value and what to do about it is on Why is get_email returning not_found?.
How verification works
get_email does three things:
- Generate candidates. Every common pattern is produced from the name (
justin@,justinmares@,justin.mares@,j.mares@,jmares@, etc.). - Verify via SMTP. Each candidate is probed against the domain’s MX records: the verifier speaks SMTP, issues
RCPT TO, and observes the server’s response, all withoutDATA, so no mail is ever sent. - Return the first deliverable hit. Catch-all domains are detected by probing a known-bogus address first; if the server accepts it, the result comes back as
not_foundwithreason: "catch_all"rather than a best guess.
This adds 2–5 seconds of latency per call.