<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: SK RAYHAN </title>
    <description>The latest articles on DEV Community by SK RAYHAN  (@skrayhanyt_developer).</description>
    <link>https://dev.to/skrayhanyt_developer</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4052926%2F7353c11a-580a-4acb-ae20-abfe24625d85.jpeg</url>
      <title>DEV Community: SK RAYHAN </title>
      <link>https://dev.to/skrayhanyt_developer</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/skrayhanyt_developer"/>
    <language>en</language>
    <item>
      <title>Building a 100% Serverless Disposable Email Platform with Cloudflare D1 &amp; Next.js 15</title>
      <dc:creator>SK RAYHAN </dc:creator>
      <pubDate>Thu, 27 Aug 2026 05:51:48 +0000</pubDate>
      <link>https://dev.to/skrayhanyt_developer/building-a-100-serverless-disposable-email-platform-with-cloudflare-d1-nextjs-15-cj0</link>
      <guid>https://dev.to/skrayhanyt_developer/building-a-100-serverless-disposable-email-platform-with-cloudflare-d1-nextjs-15-cj0</guid>
      <description>&lt;p&gt;Hey DEV Community! 👋&lt;/p&gt;

&lt;p&gt;As developers, we've all been there: you're testing a signup flow, but you don't want to clutter your personal inbox, and existing disposable email services are either &lt;strong&gt;too slow&lt;/strong&gt;, &lt;strong&gt;full of annoying ads&lt;/strong&gt;, or &lt;strong&gt;charge a premium&lt;/strong&gt; for basic API access.&lt;/p&gt;

&lt;p&gt;I decided to solve this by building &lt;strong&gt;&lt;a href="https://trytempmail.co" rel="noopener noreferrer"&gt;TTMAIL (trytempmail.co)&lt;/a&gt;&lt;/strong&gt; — a modern, privacy-focused, and incredibly fast temporary email platform built entirely on the edge.&lt;/p&gt;

&lt;h2&gt;
  
  
  🛠 The Problem I Wanted to Solve
&lt;/h2&gt;

&lt;p&gt;Most "Temp Mail" services use outdated PHP/MySQL stacks or heavy polling, leading to:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt; &lt;strong&gt;High Latency:&lt;/strong&gt; Waiting 30s+ for a verification email.&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;Privacy Concerns:&lt;/strong&gt; Logged data and trackers.&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;No Developer DX:&lt;/strong&gt; Hard to use in Playwright or Cypress tests without paying.&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  ⚡ The Tech Stack (Serverless Excellence)
&lt;/h2&gt;

&lt;p&gt;I wanted &lt;strong&gt;zero maintenance&lt;/strong&gt; and &lt;strong&gt;zero server bills&lt;/strong&gt;. Here is how I achieved it:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;  &lt;strong&gt;Framework:&lt;/strong&gt; &lt;a href="https://nextjs.org/" rel="noopener noreferrer"&gt;Next.js 15 (App Router)&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Runtime:&lt;/strong&gt; &lt;a href="https://pages.cloudflare.com/" rel="noopener noreferrer"&gt;Cloudflare Pages Functions&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Database:&lt;/strong&gt; &lt;a href="https://developers.cloudflare.com/d1/" rel="noopener noreferrer"&gt;Cloudflare D1&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Email Ingestion:&lt;/strong&gt; &lt;a href="https://developers.cloudflare.com/email-routing/" rel="noopener noreferrer"&gt;Cloudflare Email Routing&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;  &lt;strong&gt;Design:&lt;/strong&gt; &lt;strong&gt;Neo-Brutalist UI&lt;/strong&gt; using Tailwind CSS.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  🏗 Architecture Diagram
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
mermaid
graph LR
    Sender[Email Sender] --&amp;gt; CF_MX[Cloudflare MX]
    CF_MX --&amp;gt; Worker[Email Worker]
    Worker --&amp;gt; D1[(Cloudflare D1 Edge SQLite)]
    Client[Browser/CI Tool] --&amp;gt; API[Next.js API]
    API --&amp;gt; D1
🌟 Key Features for Power Users
1. ⚡ Sub-Second Speed
Because the database (D1) and the logic (Workers) live at the edge, emails are parsed and stored almost instantly.
2. 🛡️ Privacy by Design (Zero Tracking)
Pixel Stripper: Our edge worker automatically neutralizes 1x1 tracking pixels.
Auto-Purge: Emails are automatically deleted every 90 days.
3. 🤖 First-Class API for E2E Testing
Fetch emails programmatically in your CI/CD pipeline:
code
JavaScript
const response = await fetch('https://trytempmail.co/api/emails?address=qa-bot@trytempmail.co');
const { emails } = await response.json();
console.log(emails[0].subject);
4. 🔑 Cross-Device Sync
Use a custom passphrase for any alias to restore your inbox on any device.
🚀 Check it out!
Live Project: https://trytempmail.co
API Docs: https://trytempmail.co/api-docs
💬 I'd Love Your Feedback!
UI/UX: What do you think of the Neo-Brutalist aesthetic?
Features: Would you find Webhook support useful?
Performance: How is the delivery speed in your region?
Drop a comment below! 👇
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
      <category>webdev</category>
      <category>staticwebapps</category>
      <category>cloudflarechallenge</category>
      <category>nextjs</category>
    </item>
    <item>
      <title>Built a Simple Tool to Receive SMS Online for Free - Need Your Feedback!</title>
      <dc:creator>SK RAYHAN </dc:creator>
      <pubDate>Thu, 13 Aug 2026 14:58:21 +0000</pubDate>
      <link>https://dev.to/skrayhanyt_developer/built-a-simple-tool-to-receive-sms-online-for-free-need-your-feedback-pfp</link>
      <guid>https://dev.to/skrayhanyt_developer/built-a-simple-tool-to-receive-sms-online-for-free-need-your-feedback-pfp</guid>
      <description>&lt;p&gt;Hi Everyone!&lt;br&gt;
I just launched a project called Virtual &lt;a href="https://virtual.trytempmail.co/country/us" rel="noopener noreferrer"&gt;TryTempMail&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;It’s a platform that provides temporary virtual numbers for SMS verification. I noticed that most "free SMS" sites are filled with expired numbers, so I’m trying to keep these numbers updated and functional.&lt;/p&gt;

&lt;p&gt;Current Features:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Focus on USA virtual numbers.&lt;/li&gt;
&lt;li&gt;Real-time SMS receiving (perfect for OTPs).&lt;/li&gt;
&lt;li&gt;Minimalist UI for fast loading.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I’m bearign the cost of these numbers to keep them free for everyone. I'd love it if you guys could give it a try and let me know how it works for your testing needs!&lt;/p&gt;

&lt;p&gt;Link: &lt;a href="https://virtual.trytempmail.co/" rel="noopener noreferrer"&gt;https://virtual.trytempmail.co/&lt;/a&gt;&lt;br&gt;
What other countries should I add next? Drop your suggestions in the comments! 👇&lt;/p&gt;

&lt;h1&gt;
  
  
  opensource #showdev #productivity #verification
&lt;/h1&gt;

</description>
      <category>ai</category>
      <category>webdev</category>
      <category>tutorial</category>
      <category>reviews</category>
    </item>
    <item>
      <title>Can I add API ?</title>
      <dc:creator>SK RAYHAN </dc:creator>
      <pubDate>Fri, 31 Jul 2026 08:56:43 +0000</pubDate>
      <link>https://dev.to/skrayhanyt_developer/can-i-add-api--i30</link>
      <guid>https://dev.to/skrayhanyt_developer/can-i-add-api--i30</guid>
      <description>&lt;div class="crayons-card c-embed text-styles text-styles--secondary"&gt;
    &lt;div class="c-embed__content"&gt;
      &lt;div class="c-embed__body"&gt;
        &lt;h2 class="fs-xl lh-tight"&gt;
          &lt;a href="https://trytempmail.co/" rel="noopener noreferrer" class="c-link"&gt;
            Free Temp Mail — Disposable Email &amp;amp; Temporary Address
          &lt;/a&gt;
        &lt;/h2&gt;
          &lt;p class="truncate-at-3"&gt;
            TryTempMail offers fast, free, and secure temporary disposable email addresses with custom usernames and passwords. Protect your privacy and stop spam today!
          &lt;/p&gt;
        &lt;div class="color-secondary fs-s flex items-center"&gt;
            &lt;img alt="favicon" class="c-embed__favicon m-0 mr-2 radius-0" src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Ftrytempmail.co%2Fassets%2Ficons%2Ffavicon-16x16.png" width="16" height="16"&gt;
          trytempmail.co
        &lt;/div&gt;
      &lt;/div&gt;
    &lt;/div&gt;
&lt;/div&gt;


&lt;p&gt;check site can I add API ?&lt;/p&gt;

&lt;p&gt;If I add API then growth my site ? &lt;/p&gt;

</description>
      <category>webdev</category>
      <category>python</category>
      <category>devops</category>
      <category>opensource</category>
    </item>
    <item>
      <title>Use this TryTempMail service tools</title>
      <dc:creator>SK RAYHAN </dc:creator>
      <pubDate>Wed, 29 Jul 2026 12:26:16 +0000</pubDate>
      <link>https://dev.to/skrayhanyt_developer/use-this-trytempmail-service-tools-1b10</link>
      <guid>https://dev.to/skrayhanyt_developer/use-this-trytempmail-service-tools-1b10</guid>
      <description>&lt;p&gt;I want to build TryTempMail service tools - &lt;/p&gt;

&lt;p&gt;Please check - &lt;/p&gt;

&lt;p&gt;Here need to app API ? if need API tell me I will add - &lt;/p&gt;

&lt;p&gt;Tools - &lt;a href="https://trytempmail.co/" rel="noopener noreferrer"&gt;https://trytempmail.co/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>ai</category>
      <category>webdev</category>
      <category>programming</category>
      <category>productivity</category>
    </item>
  </channel>
</rss>
