Disposable email database
Is binkmail.com a disposable email?
Quick answer
binkmail.com is operated by Binkmail (Mailinator network), 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 Binkmail (Mailinator network)
Binkmail.com is one of the alternate domains of the Mailinator network. Any address @binkmail.com feeds into the same public, passwordless inbox system as Mailinator itself — the different domain exists largely to slip past blocklists that only list mailinator.com.
What it’s typically used for
Throwaway signups by users who found mailinator.com blocked on a form and reached for a lesser-known alias domain of the same service.
Should you block binkmail.com in your signup form?
Identical risk to Mailinator: public inboxes, zero intention of ongoing contact. Block it — and treat its existence as a reminder to use a maintained list that tracks Mailinator's rotating alias domains rather than a single hardcoded domain.
How to detect binkmail.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@binkmail.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.