Disposable email database
Is emailfake.com a disposable email?
Quick answer
emailfake.com is operated by Email Fake, 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 Email Fake
Email Fake is a disposable-address generator that lets users compose an address across a large, rotating catalog of domains — including obscure ones added specifically because blocklists haven't caught them yet. The generated inboxes are public and registration-free.
What it’s typically used for
Evading disposable-domain blocklists: when a form rejects one domain, the user picks another from the catalog until one passes.
Should you block emailfake.com in your signup form?
Block the core domain, but the rotating catalog is the real threat model — it's a live argument for combining a maintained feed with MX and domain-age checks instead of trusting any static list.
How to detect emailfake.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@emailfake.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.