TextyConverterbeta
⌘K

Random Emails Generator

Generate plausible-looking random email addresses for testing. Uses example.com-style domains.

About Random Emails Generator

Each email is a random first+last name combined with a random separator (., _, or none), an optional 2-digit suffix, and a placeholder domain like example.com. All domains are documentation-safe (no real users), so it's safe to use the output as test fixtures without worrying about accidentally emailing strangers.

When to use it

  • Filling test fixtures or seed data with realistic-looking emails
  • Generating placeholder values for user-input demos
  • Testing email-validation logic with varied inputs

How it works

First and last names are drawn from the names lists, lowercased, and joined with a random separator. A 2-digit suffix is appended 30% of the time. The domain is drawn from a small list of documentation-style placeholder domains.

Examples

Count=3
amelia.patel@example.com
liam_walker42@demo.dev
noah.thompson@example.org

Frequently asked questions

Will these emails actually reach anyone?
No — all domains are placeholders reserved for documentation use (example.com, example.org, example.net, etc.). They never resolve to real inboxes.
Can I use my own domain?
Yes — the custom domain field overrides the random domain pool. Leave it blank to use the placeholders.
Are the emails RFC-valid?
Yes for the local-part character set. The output may produce duplicates across long runs since the name pool is bounded.

Related tools