Disposable email database

Is tempmailo.com a disposable email?

Yes — tempmailo.com is a disposable / temporary email service.

Quick answer

tempmailo.com is operated by TempMailo, a disposable / temporary email service. Signups using this domain are almost always throwaway. Block at signup if your product depends on long-term email reachability.

About TempMailo

TempMailo is a disposable email service that auto-generates a temporary address on arrival and holds incoming mail for a short window before deleting it. It's one of the wave of interchangeable temp-mail sites that appeared after Temp-Mail popularized the format.

What it’s typically used for

Quick throwaway confirmations from users who searched 'temp mail' and clicked whichever service ranked that day.

Should you block tempmailo.com in your signup form?

Standard disposable model with no lasting inbox. Block at signup — services in this long tail rotate in and out of popularity, which is why a daily-updated list matters more than any single domain.

How to detect tempmailo.com in code

You don’t need to maintain a hand-rolled list. Vouchley returns a disposable flag (and the rest of the signup score) on every check:

curl -X POST https://api.vouchley.getrevlio.com/v1/verify \
  -H "Authorization: Bearer vch_live_..." \
  -H "Content-Type: application/json" \
  -d '{
    "email": "anyone@tempmailo.com",
    "ip_address": "203.0.113.10"
  }'

# Response:
# {
#   "score": 12,
#   "recommendation": "block",
#   "email": { "disposable": true, "valid": true },
#   ...
# }

Block disposable signups in one API call.

Vouchley keeps the disposable list current — including alias domains and new providers — so you never have to maintain it yourself.