Disposable email database

Is trashmail.com a disposable email?

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

Quick answer

trashmail.com is operated by TrashMail, 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 TrashMail

TrashMail is a German-origin disposable email service that has been operating since the early 2000s. Free addresses self-expire; paid plans extend the lifetime and add forwarding to a real inbox.

What it’s typically used for

Signups where the user wants disposable email behaviour but with the option to forward important messages back to a real address.

Should you block trashmail.com in your signup form?

Free TrashMail addresses are throwaway by design. The paid forwarding tier still represents a user explicitly hiding their real address — block at signup unless your product caters to that audience.

How to detect trashmail.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@trashmail.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.