<?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: DevNPlay</title>
    <description>The latest articles on DEV Community by DevNPlay (@devnplay).</description>
    <link>https://dev.to/devnplay</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.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3731903%2F18e13a7f-4dc6-4b75-b38b-0fe2d2bb15df.png</url>
      <title>DEV Community: DevNPlay</title>
      <link>https://dev.to/devnplay</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/devnplay"/>
    <language>en</language>
    <item>
      <title>How to Automate OTP Extraction and Email Testing in n8n with Disposable Inboxes</title>
      <dc:creator>DevNPlay</dc:creator>
      <pubDate>Mon, 27 Apr 2026 16:06:54 +0000</pubDate>
      <link>https://dev.to/devnplay/how-to-automate-otp-extraction-and-email-testing-in-n8n-with-disposable-inboxes-ell</link>
      <guid>https://dev.to/devnplay/how-to-automate-otp-extraction-and-email-testing-in-n8n-with-disposable-inboxes-ell</guid>
      <description>&lt;p&gt;If you've ever tried to automate signup flows or OTP-based authentication testing in n8n, you've probably hit the same wall — there's no clean way to receive emails as a workflow trigger without setting up your own mail server or polling an IMAP node that drops events under load.&lt;/p&gt;

&lt;p&gt;I ran into this exact problem while building &lt;a href="https://openinbox.io" rel="noopener noreferrer"&gt;OpenInbox&lt;/a&gt;, a disposable email API. So I built an n8n community node for it.&lt;/p&gt;

&lt;p&gt;Here's what it does and how to use it.&lt;/p&gt;




&lt;h2&gt;
  
  
  The problem with IMAP polling in n8n
&lt;/h2&gt;

&lt;p&gt;n8n's built-in email trigger uses IMAP polling. That means it checks your inbox on an interval — every 60 seconds by default. For automated testing workflows this is painful:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;You get delays between email arrival and workflow execution&lt;/li&gt;
&lt;li&gt;Under load, events get dropped or queued unpredictably&lt;/li&gt;
&lt;li&gt;You can't create isolated inboxes per test run — you're sharing one inbox&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  What the OpenInbox node does differently
&lt;/h2&gt;

&lt;p&gt;The &lt;code&gt;n8n-nodes-openinbox&lt;/code&gt; node uses a &lt;strong&gt;webhook trigger&lt;/strong&gt;. The moment an email lands in your disposable inbox, OpenInbox fires a webhook to n8n — no polling, no delays, no dropped events.&lt;/p&gt;

&lt;p&gt;You also get:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Create inboxes on the fly&lt;/strong&gt; — spin up a fresh inbox inside any workflow&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Full raw email payload&lt;/strong&gt; — subject, body (plain + HTML), sender, headers, attachments&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Write your own parser logic&lt;/strong&gt; — use n8n's built-in Code node or Regex node to extract exactly what you need&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Custom domain support&lt;/strong&gt; — use your own domain for the disposable addresses&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Delete messages&lt;/strong&gt; after processing to keep things clean&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Install it (no approval needed for self-hosted)
&lt;/h2&gt;

&lt;p&gt;The node is published to npm and installable right now on any self-hosted n8n instance:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Settings → Community Nodes → Install → type:&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;n8n-nodes-openinbox
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Restart n8n and the node appears in your editor. That's it.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt; The node is pending official n8n verification for cloud users. Self-hosted users (Docker, VPS, Railway, etc.) can install it immediately.&lt;/p&gt;
&lt;/blockquote&gt;




&lt;h2&gt;
  
  
  Workflow example: OTP extraction automation
&lt;/h2&gt;

&lt;p&gt;Here's a real workflow you can build in under 5 minutes.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Use case:&lt;/strong&gt; You want to automate testing of an email-based OTP signup flow.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Nodes:&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;OpenInbox — Create Inbox&lt;/strong&gt; → creates a fresh disposable address (e.g. &lt;code&gt;test-abc123@openinbox.io&lt;/code&gt;)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;HTTP Request&lt;/strong&gt; → triggers your signup form with that address&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;OpenInbox — Email Trigger (Webhook)&lt;/strong&gt; → fires the moment the OTP email arrives&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Code node&lt;/strong&gt; → extracts the OTP from the raw email body
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="c1"&gt;// Example Code node — extract 6-digit OTP from email body&lt;/span&gt;
&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;body&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;$json&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;body_plain&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;match&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;body&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;match&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="sr"&gt;/&lt;/span&gt;&lt;span class="se"&gt;\b\d{6}\b&lt;/span&gt;&lt;span class="sr"&gt;/&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="p"&gt;[{&lt;/span&gt; &lt;span class="na"&gt;otp&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="nx"&gt;match&lt;/span&gt; &lt;span class="p"&gt;?&lt;/span&gt; &lt;span class="nx"&gt;match&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="mi"&gt;0&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt; &lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="kc"&gt;null&lt;/span&gt; &lt;span class="p"&gt;}];&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Continue your workflow&lt;/strong&gt; with the extracted OTP — submit a form, validate a token, log results, whatever you need.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;No regex guessing at polling intervals. No shared inbox contamination between test runs. The webhook fires and your workflow continues in real time.&lt;/p&gt;




&lt;h2&gt;
  
  
  Other use cases
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;CI/CD email validation&lt;/strong&gt; — spin up a unique inbox per test run, send a transactional email through your system, assert on subject line, content, sender, and delivery time. Tear it down when done.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;QA signup flow testing&lt;/strong&gt; — test your entire onboarding email sequence in isolation without touching production inboxes or real user addresses.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Email-triggered pipelines&lt;/strong&gt; — use a disposable address as a lightweight inbound webhook alternative. Anything that can send an email can now trigger an n8n workflow.&lt;/p&gt;




&lt;h2&gt;
  
  
  Links
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;npm: &lt;a href="https://www.npmjs.com/package/n8n-nodes-openinbox" rel="noopener noreferrer"&gt;n8n-nodes-openinbox&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Site + API docs: &lt;a href="https://openinbox.io/api-docs" rel="noopener noreferrer"&gt;openinbox.io&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Happy to answer questions in the comments — especially if you have workflow ideas or run into anything weird during setup.&lt;/p&gt;

</description>
      <category>tooling</category>
      <category>npm</category>
      <category>webdev</category>
      <category>productivity</category>
    </item>
    <item>
      <title>I was manually checking a competitor's website every day. So I built something to stop doing that</title>
      <dc:creator>DevNPlay</dc:creator>
      <pubDate>Thu, 16 Apr 2026 19:40:33 +0000</pubDate>
      <link>https://dev.to/devnplay/i-was-manually-checking-a-competitors-website-every-day-so-i-built-something-to-stop-doing-that-2715</link>
      <guid>https://dev.to/devnplay/i-was-manually-checking-a-competitors-website-every-day-so-i-built-something-to-stop-doing-that-2715</guid>
      <description>&lt;h1&gt;
  
  
  I was manually checking a competitor's website every day. So I built something to stop doing that.
&lt;/h1&gt;

&lt;p&gt;This is a little embarrassing to admit.&lt;/p&gt;

&lt;p&gt;For months, I had a tab pinned in my browser. A competitor's pricing page.&lt;br&gt;
I'd open it every couple of days, stare at it, try to remember what it &lt;br&gt;
looked like last time, and close it.&lt;/p&gt;

&lt;p&gt;No system. No alerts. Just vibes and a bad memory.&lt;/p&gt;

&lt;p&gt;Then I missed something. They quietly changed their pricing for a week — &lt;br&gt;
a promotion I only found out about after it ended. By the time I noticed, &lt;br&gt;
the window was closed.&lt;/p&gt;

&lt;p&gt;That was enough. I decided to stop doing this manually.&lt;/p&gt;

&lt;h2&gt;
  
  
  I looked for a tool. Nothing felt right.
&lt;/h2&gt;

&lt;p&gt;The options I found were either:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Overkill enterprise tools with pricing to match&lt;/li&gt;
&lt;li&gt;Abandoned projects that hadn't been touched in years&lt;/li&gt;
&lt;li&gt;Too technical to set up without writing scripts&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I didn't want to write scripts. I just wanted something to watch a URL &lt;br&gt;
and tell me when it changed.&lt;/p&gt;

&lt;p&gt;So I built it myself.&lt;/p&gt;

&lt;h2&gt;
  
  
  Introducing ChangePulse
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://changepulse.io" rel="noopener noreferrer"&gt;ChangePulse&lt;/a&gt;&lt;/strong&gt; monitors any public webpage and &lt;br&gt;
alerts you the moment something changes.&lt;/p&gt;

&lt;p&gt;You paste a URL. Pick how often to check it. Choose how you want to be &lt;br&gt;
notified — email, Slack, or webhook. That's it. ChangePulse handles &lt;br&gt;
everything else and sends you an alert with a visual diff showing exactly &lt;br&gt;
what changed and what was there before.&lt;/p&gt;

&lt;p&gt;No scripts. No server. No manual refreshing.&lt;/p&gt;

&lt;h2&gt;
  
  
  The use cases surprised me
&lt;/h2&gt;

&lt;p&gt;I built this to solve my own competitor monitoring problem. But since &lt;br&gt;
launching I've heard from people using it for things I didn't anticipate:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Watching company career pages to catch job postings the moment they go live&lt;/li&gt;
&lt;li&gt;Tracking supplier and vendor pages for price or stock changes&lt;/li&gt;
&lt;li&gt;Monitoring government and regulatory pages for policy updates&lt;/li&gt;
&lt;li&gt;Keeping an eye on a product page waiting for a restock&lt;/li&gt;
&lt;li&gt;Agencies monitoring competitor pages for their clients as a value-add&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The common thread: people who need to know when something changes, but &lt;br&gt;
don't want to babysit a browser tab to find out.&lt;/p&gt;

&lt;h2&gt;
  
  
  It's free to start
&lt;/h2&gt;

&lt;p&gt;There's a free plan with 5 monitors and daily checks. No credit card, &lt;br&gt;
no commitment.&lt;/p&gt;

&lt;p&gt;If you've ever found yourself manually refreshing a page waiting for &lt;br&gt;
something to change — this was built for exactly that moment.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://changepulse.io" rel="noopener noreferrer"&gt;Try ChangePulse for free → changepulse.io&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;




&lt;p&gt;What websites do you find yourself checking manually that you wish you &lt;br&gt;
could automate? Curious what use cases I haven't thought of yet.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>buildinpublic</category>
      <category>productivity</category>
      <category>javascript</category>
    </item>
    <item>
      <title>I Built a Disposable Email API for Developers</title>
      <dc:creator>DevNPlay</dc:creator>
      <pubDate>Wed, 04 Mar 2026 00:12:31 +0000</pubDate>
      <link>https://dev.to/devnplay/i-built-a-disposable-email-api-for-developers-5ac5</link>
      <guid>https://dev.to/devnplay/i-built-a-disposable-email-api-for-developers-5ac5</guid>
      <description>&lt;p&gt;I Built a Disposable Email API for Developers&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fz705tzdnat06c70i766z.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fz705tzdnat06c70i766z.png" alt=" " width="800" height="496"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;As a developer, I constantly run into the same problem while testing apps:&lt;/p&gt;

&lt;p&gt;I need email addresses for verification emails.&lt;/p&gt;

&lt;p&gt;Whether it's:&lt;/p&gt;

&lt;p&gt;testing signup flows&lt;/p&gt;

&lt;p&gt;password reset emails&lt;/p&gt;

&lt;p&gt;QA automation&lt;/p&gt;

&lt;p&gt;bot testing&lt;/p&gt;

&lt;p&gt;CI pipelines&lt;/p&gt;

&lt;p&gt;Using my personal inbox quickly becomes messy with dozens of test emails.&lt;/p&gt;

&lt;p&gt;So I built OpenInbox — a disposable email service designed for both developers and regular users.&lt;/p&gt;

&lt;p&gt;👉 &lt;a href="https://openinbox.io" rel="noopener noreferrer"&gt;https://openinbox.io&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Why I Built It&lt;/p&gt;

&lt;p&gt;Many temporary email websites already exist, but they usually have a few problems:&lt;/p&gt;

&lt;p&gt;slow email delivery&lt;/p&gt;

&lt;p&gt;overloaded with intrusive ads&lt;/p&gt;

&lt;p&gt;no developer APIs&lt;/p&gt;

&lt;p&gt;unreliable inboxes&lt;/p&gt;

&lt;p&gt;I wanted something that was:&lt;/p&gt;

&lt;p&gt;fast&lt;/p&gt;

&lt;p&gt;simple&lt;/p&gt;

&lt;p&gt;API-friendly&lt;/p&gt;

&lt;p&gt;So OpenInbox was born.&lt;/p&gt;

&lt;p&gt;What OpenInbox Does&lt;/p&gt;

&lt;p&gt;OpenInbox lets you instantly create temporary inboxes and receive emails without signing up.&lt;/p&gt;

&lt;p&gt;You can use it directly from the browser or through the API.&lt;/p&gt;

&lt;p&gt;Common use cases include:&lt;/p&gt;

&lt;p&gt;testing signup verification emails&lt;/p&gt;

&lt;p&gt;automation scripts&lt;/p&gt;

&lt;p&gt;QA testing&lt;/p&gt;

&lt;p&gt;protecting your real email from spam&lt;/p&gt;

&lt;p&gt;temporary registrations&lt;/p&gt;

&lt;p&gt;Looking for Feedback&lt;/p&gt;

&lt;p&gt;I’m continuously improving OpenInbox and adding new features like:&lt;/p&gt;

&lt;p&gt;browser extensions&lt;/p&gt;

&lt;p&gt;more API capabilities&lt;/p&gt;

&lt;p&gt;automation tools&lt;/p&gt;

&lt;p&gt;If you're a developer who needs disposable emails for testing, feel free to try it.&lt;/p&gt;

&lt;p&gt;👉 &lt;a href="https://openinbox.io" rel="noopener noreferrer"&gt;https://openinbox.io&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I’d love to hear your feedback or suggestions.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>productivity</category>
      <category>devtools</category>
      <category>testing</category>
    </item>
  </channel>
</rss>
