<?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: deva</title>
    <description>The latest articles on DEV Community by deva (@awesomedeva).</description>
    <link>https://dev.to/awesomedeva</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%2F2291448%2F373c792d-fa13-47a5-95bb-f9e1f406066c.jpg</url>
      <title>DEV Community: deva</title>
      <link>https://dev.to/awesomedeva</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/awesomedeva"/>
    <language>en</language>
    <item>
      <title>🚀 SPOE – Smart Postmark Email Router with AI 🧠📬</title>
      <dc:creator>deva</dc:creator>
      <pubDate>Mon, 09 Jun 2025 06:57:12 +0000</pubDate>
      <link>https://dev.to/awesomedeva/spoe-smart-postmark-email-router-with-ai-367l</link>
      <guid>https://dev.to/awesomedeva/spoe-smart-postmark-email-router-with-ai-367l</guid>
      <description>&lt;p&gt;"Single point of Emails. One inbox to rule them all"&lt;/p&gt;




&lt;h2&gt;
  
  
  🎯 What’s the Problem?
&lt;/h2&gt;

&lt;p&gt;Managing multiple departmental emails in an organization is often chaotic:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Customers don’t know which email to use.&lt;/li&gt;
&lt;li&gt;Emails go unanswered or misrouted.&lt;/li&gt;
&lt;li&gt;Teams waste time forwarding messages to the right people.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That’s where &lt;strong&gt;SPOE&lt;/strong&gt; steps in.&lt;/p&gt;




&lt;h2&gt;
  
  
  💡 The Idea
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;SPOE&lt;/strong&gt; (Single Point of Email) provides a &lt;strong&gt;smart, centralized email address&lt;/strong&gt; for organizations. Incoming emails to this address are:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Parsed using &lt;strong&gt;Postmark’s Inbound Email Parsing&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;Matched via AI to the most relevant internal team or department.&lt;/li&gt;
&lt;li&gt;Forwarded automatically to the best-fit email address — with the original sender CC'ed!&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;It’s like a smart receptionist for your inbox 📬🤖&lt;/p&gt;




&lt;h2&gt;
  
  
  🛠️ How It Works
&lt;/h2&gt;

&lt;h3&gt;
  
  
  🔐 Frontend Features
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Organisation Signup/Login&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;Add/Edit/Delete department/team emails&lt;/li&gt;
&lt;li&gt;Add short descriptions for each email (to guide routing)&lt;/li&gt;
&lt;li&gt;Set a &lt;strong&gt;fallback email&lt;/strong&gt; (for unmatched messages)&lt;/li&gt;
&lt;li&gt;Simple, clean UI (no clutter)&lt;/li&gt;
&lt;/ul&gt;

&lt;blockquote&gt;
&lt;p&gt;🧪 &lt;a href="https://spoe.maker-space.me" rel="noopener noreferrer"&gt;Live Demo&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h3&gt;
  
  
  🔧 Backend Workflow
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt;Each registered organization gets a custom email like: &lt;code&gt;orgname@spoe.maker-space.me&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;This domain is already verified on Postmark for inbound email parsing.&lt;/li&gt;
&lt;li&gt;When a customer sends an email:

&lt;ul&gt;
&lt;li&gt;Postmark parses the email content (subject, body, sender, etc.)&lt;/li&gt;
&lt;li&gt;The system computes &lt;strong&gt;vector embeddings&lt;/strong&gt; of the email text.&lt;/li&gt;
&lt;li&gt;It compares those against the org's configured team descriptions.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;The closest match is picked.&lt;/li&gt;
&lt;li&gt;The system uses &lt;strong&gt;Google’s AI Studio LLM&lt;/strong&gt; to generate a smart forwarding message.&lt;/li&gt;
&lt;li&gt;The email is sent to the matched address with the original sender CC’ed.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;No more confusion. Just clarity and automation.&lt;/p&gt;




&lt;h2&gt;
  
  
  🤖 Why Postmark?
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Postmark’s &lt;strong&gt;Inbound Email Parsing API&lt;/strong&gt; made this all possible.&lt;/li&gt;
&lt;li&gt;It's fast, clean, and reliable.&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  📦 Tech Stack
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Frontend&lt;/strong&gt;: VanillaJS, HTML and CSS&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Backend&lt;/strong&gt;: Python&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;AI&lt;/strong&gt;: Google AI Studio (Embedding + Completion APIs)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Email Parsing&lt;/strong&gt;: Postmark Inbound API&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Vector Search&lt;/strong&gt;: Pinecone (or in-memory for small orgs)&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  🧪 How to Test It
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Visit: &lt;a href="https://spoe.maker-space.me" rel="noopener noreferrer"&gt;https://spoe.maker-space.me&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Create an organization account.&lt;/li&gt;
&lt;li&gt;Add 2–3 team email IDs with short descriptions (e.g., &lt;code&gt;support@org.com&lt;/code&gt; – handles technical issues).&lt;/li&gt;
&lt;li&gt;Email your org address (e.g., &lt;code&gt;acmecorp@spoe.maker-space.me&lt;/code&gt;) from any email client with a test query.&lt;/li&gt;
&lt;li&gt;Check your configured emails – you'll see it routed automatically with sender CC’ed.&lt;/li&gt;
&lt;/ol&gt;




&lt;h2&gt;
  
  
  🔚 Final Thoughts
&lt;/h2&gt;

&lt;p&gt;This challenge made me explore how email – something we all use daily – can be made smarter using AI and Postmark. SPOE is just the beginning. Imagine plugging this into:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Internal ticketing systems&lt;/li&gt;
&lt;li&gt;CRM tools&lt;/li&gt;
&lt;li&gt;Helpdesks&lt;/li&gt;
&lt;li&gt;Even art installations!&lt;/li&gt;
&lt;li&gt;Bug reporting in Tech Companies&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>postmarkchallenge</category>
    </item>
    <item>
      <title>One Inbox to Rule Them All: My Personalized Newsletter Digest App - Powered by Postmark</title>
      <dc:creator>deva</dc:creator>
      <pubDate>Mon, 09 Jun 2025 06:14:39 +0000</pubDate>
      <link>https://dev.to/awesomedeva/one-inbox-to-rule-them-all-my-personalized-newsletter-digest-app-2k50</link>
      <guid>https://dev.to/awesomedeva/one-inbox-to-rule-them-all-my-personalized-newsletter-digest-app-2k50</guid>
      <description>&lt;h2&gt;
  
  
  ✨ The Problem
&lt;/h2&gt;

&lt;p&gt;Let’s face it — newsletters are amazing... until they aren’t.&lt;/p&gt;

&lt;p&gt;Between tech updates, founder essays, product launches, and weekly deep-dives, we subscribe to &lt;em&gt;way too many&lt;/em&gt;. The result? Inbox chaos. Important insights get buried, and we spend more time filtering than reading.&lt;/p&gt;

&lt;h2&gt;
  
  
  💡 The Idea
&lt;/h2&gt;

&lt;p&gt;So I built a solution:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://newsletter.maker-space.me" rel="noopener noreferrer"&gt;Here You can Try&lt;/a&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;An app that turns N newsletters into ONE personalized daily/weekly digest — powered by Postmark.&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The goal? Cut the noise. Keep the value.&lt;/p&gt;




&lt;h2&gt;
  
  
  🛠️ How It Works
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Smart Parsing&lt;/strong&gt;: Newsletters are forwarded to a unique address.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;AI Summarization&lt;/strong&gt;: Each email is scanned, summarized, and categorized.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Personal Preferences&lt;/strong&gt;: You pick the topics you care about.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Digest Delivery&lt;/strong&gt;: Postmark reliably delivers your single, clean, beautifully formatted digest.&lt;/li&gt;
&lt;/ol&gt;




&lt;h2&gt;
  
  
  🚀 Why Postmark?
&lt;/h2&gt;

&lt;p&gt;Email deliverability makes or breaks this kind of app.&lt;/p&gt;

&lt;p&gt;Postmark’s lightning-fast, developer-friendly platform ensured:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;⚡ Instant, reliable delivery of digests&lt;/li&gt;
&lt;li&gt;💌 Beautiful, templated emails with Markdown support&lt;/li&gt;
&lt;li&gt;📈 Analytics for open/click rates so users stay informed&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I have used the postmarks custom inbound domain forwarding feature to generate n numbers of mail ids for my users.&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%2F6zlukoaiv485ykix4zws.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%2F6zlukoaiv485ykix4zws.png" alt="Custom Domain" width="800" height="815"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The process was very simple and easy to implement as every step is properly documented by postmark team in their dev docs.&lt;/p&gt;




&lt;h2&gt;
  
  
  Some Screenshots
&lt;/h2&gt;

&lt;p&gt;Please try the app yourself by going to link given above.&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%2F2ua8h7k92j8e3zwb4oeu.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%2F2ua8h7k92j8e3zwb4oeu.png" alt="Landing Page" width="800" height="865"&gt;&lt;/a&gt;&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%2Fuwda9mxgfo6o0gxpxrr1.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%2Fuwda9mxgfo6o0gxpxrr1.png" alt="How It Works" width="800" height="589"&gt;&lt;/a&gt;&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%2F6rexvi6oyyd8je0roaj6.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%2F6rexvi6oyyd8je0roaj6.png" alt="Dashboard" width="800" height="487"&gt;&lt;/a&gt;&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%2Fi852sj741lxywnut1von.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%2Fi852sj741lxywnut1von.png" alt="Dashboard Stats" width="800" height="735"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  🧠 Tech Stack
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Backend&lt;/strong&gt;: Python&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;AI Summarization&lt;/strong&gt;: Gemini&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Email Parsing&lt;/strong&gt;: Postmark Inbound Parsing 💛&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Digest Delivery&lt;/strong&gt;: Postmark 💛&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Frontend&lt;/strong&gt;: Vanila&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  📬 Why It Matters
&lt;/h2&gt;

&lt;p&gt;This app isn’t just about saving time. It’s about reclaiming attention.&lt;/p&gt;

&lt;p&gt;We’re drowning in content — not because we’re reading too much, but because we’re managing too many channels. A personalized digest brings back focus.&lt;/p&gt;




&lt;h2&gt;
  
  
  🔮 What’s Next?
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;🔗 Integrations with Gmail/Outlook&lt;/li&gt;
&lt;li&gt;🧩 More AI personalization (like tone, summary length, etc.)&lt;/li&gt;
&lt;li&gt;👥 Multi-user team digests&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  💬 Final Thoughts
&lt;/h2&gt;

&lt;p&gt;This project is a small step toward a more human inbox — one that works for us, not against us.&lt;/p&gt;

&lt;p&gt;Shout out to Postmark for powering the heartbeat of the app. ⚡&lt;/p&gt;

&lt;p&gt;If you're interested in testing or collaborating, reach out! Let’s build a calmer digital future.&lt;/p&gt;




</description>
      <category>devchallenge</category>
      <category>postmarkchallenge</category>
      <category>webdev</category>
      <category>api</category>
    </item>
  </channel>
</rss>
