How I Built a Real-Time Disposable Email Service with Next.js and Cloudflare?

Published: (March 1, 2026 at 08:18 PM EST)
1 min read
Source: Dev.to

Source: Dev.to

Overview

Hey dev.to community,

I wanted to share a project I’ve been working on: DisposeMail. It’s a Next.js powered temporary email service designed for developers and privacy‑conscious users.

Key features

  • Instant Generation: Get a random or custom address in one click.
  • Real-time Inbox: No page refreshes needed (WebSockets).
  • Multiple Domains: Uses a varied list of domains to bypass blocklists.
  • Secure: All data is purged from RAM every hour.

I’d love to hear your thoughts on the UI/UX and any features you think are missing!

Link to the project:

0 views
Back to Blog

Related posts

Read more »

Did Your Project Really Need Next.js?

Introduction Recently, I’ve been seeing more and more teams migrating projects from Next.js to TanStack. Cases like Inngest, which reduced local dev time by 83...

The 'skill-check' JS quiz

Question 1: Type coercion What does the following code output to the console? javascript console.log0 == '0'; console.log0 === '0'; Answer: true, then false Ex...