Disposable email database
Is dropmail.me a disposable email?
Quick answer
dropmail.me is operated by DropMail, 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 DropMail
DropMail.me issues a working disposable inbox the moment the page loads — no signup, no button press — and lets users switch between several alias domains operated by the same service. Inboxes are short-lived and vanish when the session ends.
What it’s typically used for
Instant throwaway confirmations. The zero-friction, address-on-page-load design attracts users who want an inbox for exactly one email.
Should you block dropmail.me in your signup form?
Pure throwaway usage with multiple rotating alias domains. Block the whole domain family at signup via a maintained list rather than chasing each alias by hand.
How to detect dropmail.me 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@dropmail.me",
"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.