Stop throwaway signups before they bounce, burn free trials, and tank sender reputation. Use Reloop's free temp email checker — ~210k disposable domains, no SMTP probing.
Temporary inboxes are useful for privacy. They are expensive for anyone who sends email for a living.
A disposable address often dies within an hour. Every message you send after that is a hard bounce. Sustained bounce rates are how mailbox providers decide your domain belongs in spam, for every recipient, not just the throwaway ones.
If you run a SaaS free tier, a newsletter, or a product waitlist, disposable signups also inflate your metrics and farm your credits. The fix is simple: check the address at signup, before it lands in your database.
This guide covers when to block temporary emails, how a temp email checker works, and how to wire Reloop's free public API into a registration flow.
What a temp email checker actually checks
A temp email checker (also called a disposable email detector) answers one question: is this address from a known throwaway provider?
Reloop's free Temp Email Checker does more than a domain string match. On each request it:
- Parses RFC syntax — malformed input never reaches the catalogue or DNS.
- Matches ~210,000 disposable providers — including Mailinator, Yopmail, Temp-Mail, Guerrilla Mail, and 10MinuteMail, plus wildcard suffixes for providers that mint endless subdomains.
- Flags role prefixes —
info@,billing@,support@are shared inboxes, not burners. They are reported separately so you can apply your own policy. - Looks up MX records — confirms the domain publishes a mail exchanger. That is routing evidence, not proof the mailbox exists.
- Never opens an SMTP session — no mailbox probe, no stored addresses, no account required.
A disposable verdict means the domain is on the catalogue. A clear verdict means "not currently known to be disposable" — new temp-mail services appear constantly, so treat the check as a strong signal, not a lifetime guarantee.
For a deeper walkthrough of detection methods, see how to check if an email is disposable.
Why disposable emails damage deliverability
Mailbox providers track bounce rate as a core reputation signal. Industry guidance keeps hard bounces well under ~2%. Throwaway inboxes make that threshold easy to miss:
- The mailbox is deleted minutes or hours after signup.
- Your welcome email, password reset, or drip sequence hard-bounces.
- Those failures are scored against your sending domain and IP.
- Reputation damage spreads to legitimate recipients — password resets and receipts start landing in spam.
That is the same chain that ends with emails in the spam folder. Authentication (SPF, DKIM, DMARC) and IP warming matter — but none of them fix a list full of dead temporary addresses.
Prevention sits in front of bounce handling. Validate at signup, then suppress hard bounces immediately so dead temporary addresses never get a second send.
Signup abuse patterns a checker stops
Deliverability is one reason to block. Product abuse is the other.
isDisposable is trueRole addresses (admin@, sales@) are a different problem: they are real and persistent, but shared. Reloop flags them separately so you can require a personal inbox without treating Gmail or Outlook as disposable.
When to block vs when to flag
Blocking every temporary email is not always the right product decision.
Block at signup when:
- You offer a free trial, freemium tier, or usage credits
- You run new-customer discounts or referral rewards
- Fake accounts distort activation or retention metrics
- You send transactional email and cannot afford bounce spikes
Flag or allow when:
- Privacy-sensitive audiences expect anonymous access
- The flow is feedback, bug reports, or one-off downloads
- You will suppress later rather than reject at the door
A practical middle path: block disposable domains on paid or trial signup, and on newsletter forms either soft-warn or accept then suppress before campaigns. Pair the check with email confirmation and CAPTCHA so you are not relying on a single signal.
How to check an address with Reloop (free)
Option 1 — Use the web tool
Paste an address into the Reloop Temp Email Checker. You get a verdict, disposable match details, role and free-provider flags, MX hosts, confidence, and risk score — instantly, with no signup.
Examples:
alex@gmail.com— deliverable consumer mailbox (free provider, not disposable)you@mailinator.com— disposabledemo@yopmail.com— disposable
Option 2 — Call the public API at signup
The checker is a thin wrapper over one public endpoint. No API key. No account. Rate limited per IP — keep it to signup-time checks, not bulk scrubbing.
POST https://reloop.sh/api/tools/v1/temp-email-checker
1curl -X POST https://reloop.sh/api/tools/v1/temp-email-checker \2 -H "Content-Type: application/json" \3 -d '{"email": "you@mailinator.com"}'A throwaway mailbox returns "verdict": "disposable" and "isDisposable": true:
1{2 "input": "you@mailinator.com",3 "kind": "email",4 "domain": "mailinator.com",5 "verdict": "disposable",6 "isValidSyntax": true,7 "isDisposable": true,8 "disposableMatch": {9 "kind": "exact",10 "domain": "mailinator.com"11 },12 "isAllowlisted": false,13 "isRoleAddress": false,14 "isFreeProvider": false,15 "signals": {16 "syntax": "pass",17 "disposable": "fail",18 "role": "pass",19 "freeProvider": "pass"20 },21 "mxRecords": ["spool.mailinator.com"],22 "confidence": 0.99,23 "riskScore": 0.95,24 "flags": ["DISPOSABLE_DOMAIN", "PUBLIC_INBOX_DETECTED"]25}Reject or challenge the signup when isDisposable is true. Optionally treat high riskScore or role addresses as soft warnings.
Need to clean an existing list rather than gate one registration? Use Reloop's free email validator for syntax, disposable detection, live MX, and CSV cleaning (up to 1,000 rows) in one pass. For production volume and policy controls, see email validation on Reloop.
Layer checks that protect reputation end to end
Disposable detection is one layer. Strong signup hygiene stacks several:
- Temp / disposable check — Temp Email Checker at account creation
- List hygiene before campaigns — Email Validator
- Authentication health — SPF, DKIM & DMARC checker and the setup guide
- Inbox placement tests — Deliverability tester
- Blocklist monitoring — IP & domain blocklist checker
- Transactional quality — keep password resets and receipts on a dedicated subdomain with proper auth so the mail you do send deserves the inbox
Reloop is open-source email infrastructure. You can use the hosted tools, call the public checker API, or run Reloop yourself when you want the same checks on your own servers.
Frequently asked questions
Is blocking disposable emails legal?
Yes. Temporary email services are legal for users. Choosing not to accept them on your product is a normal terms-of-service and fraud-prevention decision — the same category as blocking known bot ASNs or requiring phone verification.
Will a temp email checker catch brand-new throwaway domains?
List-based detection only knows what is on the catalogue. Reloop resyncs roughly every two hours across ~210,000 providers, which catches most new services quickly, but a brand-new domain can slip through until it is listed. Combine the check with confirmation email and rate limits.
Does Reloop prove the mailbox exists?
No. MX lookup shows mail can be routed to the domain. Reloop never probes the mailbox over SMTP. That keeps the tool fast, privacy-friendly, and suitable for a public endpoint.
Is Gmail or Outlook disposable?
No. Free consumer providers are persistent. Reloop may flag them as free providers so you can apply your own rules; they are not treated as throwaway.
Temp email checker vs email validator — which should I use?
Use the temp email checker to block burners at signup (single address, public API). Use the email validator when you need bulk CSV cleaning, fuller health scoring, and export for campaign hygiene.
Next step
Run a known throwaway address through the free Temp Email Checker, then wire the same check into your registration handler with the public API above.
If you are already sending through Reloop or evaluating open-source transactional email, start free at reloop and keep disposable addresses out of the path that builds your sender reputation.
Read more

How to Check if an Email is Disposable (Free Temp Email Checker)
In this guide, you'll learn what disposable emails are, why they matter, and how you can quickly check if an email is disposable.

Why Your Emails Land In Spam & How to Fix It
The definitive guide to diagnosing and fixing email spam folder placement — covering authentication, content, reputation, list hygiene, and ISP-specific issues.

IP Warming Schedule Guide: How to Build Sender Reputation (2026)
A comprehensive, practical guide to warming new sending IP addresses — with an exact week-by-week volume ramp schedule, recipient segmentation strategy, throttle limits, and deliverability monitoring.

SPF, DKIM, and DMARC: The Complete Setup Guide (2026)
A thorough, practical guide to configuring SPF, DKIM, and DMARC for your sending domain with exact DNS records, common mistakes, and a step-by-step verification checklist.
Ship your first email with Reloop in minutes
Open-source, deliverability-focused, and yours to self-host or run on Reloop Cloud. No lock-in, no rewrite later.