<?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: İpek Efendiev</title>
    <description>The latest articles on DEV Community by İpek Efendiev (@ipek_efendiev_192742a5571).</description>
    <link>https://dev.to/ipek_efendiev_192742a5571</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%2F3192884%2F43a7c270-1a4c-457a-ae00-d8fcb251e022.jpg</url>
      <title>DEV Community: İpek Efendiev</title>
      <link>https://dev.to/ipek_efendiev_192742a5571</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/ipek_efendiev_192742a5571"/>
    <language>en</language>
    <item>
      <title>Turn Emails into Support Tickets with Postmark</title>
      <dc:creator>İpek Efendiev</dc:creator>
      <pubDate>Sun, 25 May 2025 19:41:28 +0000</pubDate>
      <link>https://dev.to/ipek_efendiev_192742a5571/turn-emails-into-support-tickets-with-postmark-fao</link>
      <guid>https://dev.to/ipek_efendiev_192742a5571/turn-emails-into-support-tickets-with-postmark-fao</guid>
      <description>&lt;p&gt;This is a submission for the &lt;a href="https://dev.to/challenges/postmark"&gt;Postmark Challenge: Inbox Innovators&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  What I Built
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Postmark Kanban Inbox&lt;/strong&gt; is a simple ticket management system that turns incoming emails into categorized, actionable Kanban cards - powered by Postmark's inbound webhooks with facebook/bart-large-mnli, a powerful language model that can categorize messages without any fine-tuning.&lt;/p&gt;

&lt;h2&gt;
  
  
  Demo
&lt;/h2&gt;

&lt;blockquote&gt;
&lt;p&gt;You can run the full app &lt;strong&gt;locally&lt;/strong&gt; by following the steps in the &lt;a href="https://github.com/iefendiev/postmark-kanban-inbox#-how-to-test-it" rel="noopener noreferrer"&gt;README&lt;/a&gt;.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The README includes everything you need to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Start both the frontend and backend servers&lt;/li&gt;
&lt;li&gt;Set up a Postmark inbound webhook (with &lt;code&gt;ngrok&lt;/code&gt;)&lt;/li&gt;
&lt;li&gt;Send test emails or use &lt;code&gt;curl&lt;/code&gt;/JSON for local testing&lt;/li&gt;
&lt;/ul&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%2Fu5vkxljbrpt20c37clo5.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%2Fu5vkxljbrpt20c37clo5.png" alt="app-demo" width="800" height="607"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Code Repository
&lt;/h2&gt;

&lt;p&gt;You can explore the full project source code here:&lt;/p&gt;

&lt;p&gt;🔗 &lt;a href="https://github.com/iefendiev/postmark-kanban-inbox" rel="noopener noreferrer"&gt;https://github.com/iefendiev/postmark-kanban-inbox&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The repository contains:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A &lt;code&gt;server/&lt;/code&gt; folder with the Express + Prisma backend&lt;/li&gt;
&lt;li&gt;A &lt;code&gt;client/&lt;/code&gt; folder with the React + Tailwind frontend&lt;/li&gt;
&lt;li&gt;A comprehensive README with setup instructions and usage notes&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  How I Built It
&lt;/h2&gt;

&lt;p&gt;This project was built with a clean separation between backend and frontend, allowing full control over both Postmark webhook handling and UI rendering.&lt;/p&gt;

&lt;h3&gt;
  
  
  Backend
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Node.js + Express&lt;/strong&gt; for setting up the webhook and exposing RESTful endpoints&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Prisma + SQLite&lt;/strong&gt; for a fast, file-based data layer — ideal for local testing&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Postmark Inbound Webhook&lt;/strong&gt; to receive and parse raw email data&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Hugging Face Inference API&lt;/strong&gt; using the &lt;code&gt;facebook/bart-large-mnli&lt;/code&gt; model for zero-shot classification of ticket category and priority&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Frontend
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Vite + React + TypeScript&lt;/strong&gt; for a fast, modern development environment&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Tailwind CSS + Shadcn UI&lt;/strong&gt; for a polished and consistent interface&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;TanStack Query&lt;/strong&gt; to manage API data and caching&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;@dnd-kit&lt;/strong&gt; for Kanban-style drag-and-drop ticket management&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Confetti animation&lt;/strong&gt; triggers when a ticket is marked as resolved 🎉&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I usually stick to frontend work, but this challenge pushed me to try new things, and I’m really glad it did.&lt;/p&gt;

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