A domain check and a mailbox check answer different questions

Most "verified" lists are checked at the domain level, because that check is cheap, needs no conversation with a mail server, and never fails in a way anyone has to explain. It also does not answer the question the list is being used to answer: can this mailbox receive mail?

Four levels of evidence, four different claims

CheckWhat it provesWhat it cannot prove
Syntax / RFC shapeThe address is well-formedAnything about the domain or the mailbox
Domain and MX recordsThe domain exists and announces a mail serverThat the server accepts mail, or that this mailbox exists on it
SMTP probe of the mailboxThat server responds about that specific address, nowInterest, consent, or that the answer will hold tomorrow
SPF, DKIM, DMARCSomething about your sending domain and how it is authorisedAnything at all about the contact's address

The last row is the one most often misread: an authentication record is a statement about the domain you send from. It never says a word about the mailbox you are sending to. A file can be perfectly authenticated and still be full of addresses that do not exist.

Where a domain check gives false comfort

The order that produces a usable verdict

  1. Shape first. Cheap, catches typos and truncation, and costs nothing to run on every row.
  2. Domain next, and treat a failure as final for that row. If there is nowhere to deliver, no later check will improve on that answer.
  3. Probe the mailbox before you send. This is the only step that produces a claim about the address itself, and the only one that has to be repeated over time.
  4. Record three states, not two. Deliverable, undeliverable, and unknown for catch-all domains and unanswered probes.
  5. Keep the probe date on the row. A domain can stay valid for a decade while the mailbox behind it changes hands next month.

What TAPAC does

TAPAC runs the mailbox probe as part of the search that found the contact, so the list you get back has been checked at the level that answers the sending question, not just the shape of the domain: state per contact plus probe time and source. Checking a live mailbox at the moment of use is what a published 2-5% bounce rate for checked contacts against 10-35% for static, resold databases is a claim about.

npx -y @tapacapi/mcp        # tools: tapac_find_contacts, tapac_status
# or hosted: https://tapacapi.com/mcp
# or REST:   POST https://tapacapi.com/v1/contacts/search

100 free searches, then pay-per-use at $0.10-0.50 per contact.

Related: an MX record is not a mailbox, catch-all domains and the unknown state, and what SMTP verification actually checks.

← Back to TAPAC