Show HN: Inbox-beam – notifications in your inbox without sending email
toyoshi
11 points
2 comments
June 07, 2026
Related Discussions
Found 5 related stories in 107.0ms across 10,324 title embeddings via pgvector HNSW
- Show HN: BAREmail ʕ·ᴥ·ʔ – minimalist Gmail client for bad WiFi Virgo_matt · 43 pts · April 08, 2026 · 58% similar
- Show HN: Flux, a tiny protocol that rethinks email from the ground up wokki20 · 11 pts · March 08, 2026 · 56% similar
- Show HN: I built an open-source email builder, alternative to Beefree/Unlayer oahmadov · 123 pts · May 06, 2026 · 56% similar
- Show HN: mailtrim – find what's actually filling your Gmail inbox chevuru · 29 pts · April 05, 2026 · 54% similar
- Show HN: Throwaway – open-source disposable email checker and API weddpros · 11 pts · April 30, 2026 · 54% similar
Discussion Highlights (2 comments)
toyoshi
I kept setting up a sending domain + SPF/DKIM/DMARC + SES/SendGrid just to email myself app notifications (contact forms, cron failures). But I wasn't trying to reach anyone else's inbox, just my own. inbox-beam skips sending entirely: it uses the IMAP APPEND command to write the message straight into your mailbox. No SMTP, no deliverability. It shows up unread and searchable. It's explicitly NOT email delivery — it only writes to a mailbox you control, so it can't reach third parties, and keeps no send log. For that you still want real SMTP. npm: https://www.npmjs.com/package/inbox-beam
berofeev
This is a really cool concept. The mailbox at its base is just a specific type of data store. I haven't looked at the code. How are you dealing with projects scattered across different environments, are you routing those notifications yourself back to a central imap store, or do you have several different stores?