<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0" xmlns:media="http://search.yahoo.com/mrss/"><channel><title><![CDATA[Kurrier]]></title><description><![CDATA[Building the future of email observability.]]></description><link>https://www.kurrier.io/blog/</link><image><url>https://www.kurrier.io/blog/favicon.png</url><title>Kurrier</title><link>https://www.kurrier.io/blog/</link></image><generator>Ghost 5.89</generator><lastBuildDate>Sun, 06 Sep 2026 03:48:07 GMT</lastBuildDate><atom:link href="https://www.kurrier.io/blog/rss/" rel="self" type="application/rss+xml"/><ttl>60</ttl><item><title><![CDATA[The Complete Email QA Checklist]]></title><description><![CDATA[A practical checklist for testing transactional and marketing emails before they reach production. Learn what to verify- from HTML rendering and authentication to SMTP, headers, MIME structure, and deliverability- to ship reliable emails with confidence.]]></description><link>https://www.kurrier.io/blog/the-complete-email-qa-checklist/</link><guid isPermaLink="false">6a7185ef00cd7a00078bcded</guid><category><![CDATA[Email]]></category><category><![CDATA[SMTP]]></category><category><![CDATA[Email Testing]]></category><category><![CDATA[Deliverability]]></category><category><![CDATA[Developer Tools]]></category><category><![CDATA[QA]]></category><category><![CDATA[Debugging]]></category><dc:creator><![CDATA[Krishna Rokhale]]></dc:creator><pubDate>Tue, 04 Aug 2026 06:33:49 GMT</pubDate><media:content url="https://www.kurrier.io/blog/content/images/2026/08/blog-2.jpg" medium="image"/><content:encoded><![CDATA[<img src="https://www.kurrier.io/blog/content/images/2026/08/blog-2.jpg" alt="The Complete Email QA Checklist"><p>Whether you&#x2019;re sending password reset emails, invoices, verification links, support replies, newsletters, or transactional notifications, email is often the most visible part of your application.</p><p>Yet many teams only test one thing:</p><blockquote>&#x201C;Did the email send?&#x201D;</blockquote><p>Unfortunately, that&#x2019;s only the beginning.</p><p>Modern emails involve HTML rendering, plain-text fallbacks, SMTP delivery, authentication records, MIME structures, headers, tracking links, attachments, and dozens of small details that can affect whether an email reaches the inbox&#x2014;or whether users trust it once it does.</p><p>This checklist covers everything you should verify before shipping an email to production.</p><p></p><h1 id="1-verify-the-content"><strong>1. Verify the Content</strong></h1><p>Before looking at technical details, read the email like a user.</p><p>Check:</p><ul><li>Subject line is clear</li><li>Preview text makes sense</li><li>Sender name is correct</li><li>From address is correct</li><li>Reply-To address is correct</li><li>Company branding is consistent</li><li>Grammar and spelling</li><li>Personalization variables are populated</li><li>Dates and currency are formatted correctly</li><li>No placeholder values remain</li></ul><p>Example problems:</p><p>&#x274C; Hello {{first_name}}</p><p>&#x274C; Click here to verify your account (without explaining why)</p><p>&#x274C; Broken company logo</p><h1 id="2-verify-both-html-and-plain-text-versions"><strong>2. Verify Both HTML and Plain Text Versions</strong></h1><p>Every production email should contain both:</p><ul><li>HTML</li><li>Plain text</li></ul><p>Many email clients still rely on the plain-text version.</p><p>The text version is also important for accessibility, spam filtering, and automated systems.</p><p>Check that:</p><ul><li>The text version exists</li><li>Links are readable</li><li>Paragraph spacing is correct</li><li>Important information isn&#x2019;t lost</li></ul><h1 id="3-inspect-the-html"><strong>3. Inspect the HTML</strong></h1><p>HTML emails are very different from normal web pages.</p><p>Things to verify:</p><ul><li>Images load</li><li>Fonts degrade gracefully</li><li>Tables render correctly</li><li>Buttons are clickable</li><li>Inline styles are present</li><li>Mobile layout works</li><li>Dark mode is acceptable</li></ul><p>Avoid:</p><ul><li>External CSS</li><li>JavaScript</li><li>Modern layout techniques unsupported by email clients</li></ul><h1 id="4-test-across-email-clients"><strong>4. Test Across Email Clients</strong></h1><p>Never assume an email that looks good in one client looks good everywhere.</p><p>Test in:</p><ul><li>Gmail</li><li>Apple Mail</li><li>Outlook</li><li>Thunderbird</li><li>Yahoo Mail</li><li>Mobile clients</li></ul><p>Things to watch:</p><ul><li>Font rendering</li><li>Image scaling</li><li>Button alignment</li><li>Spacing</li><li>Dark mode</li><li>Responsive layout</li></ul><hr><h1 id="5-check-every-link"><strong>5. Check Every Link</strong></h1><p>Broken links are surprisingly common.</p><p>Verify:</p><ul><li>CTA buttons</li><li>Footer links</li><li>Privacy Policy</li><li>Terms of Service</li><li>Unsubscribe links</li><li>Password reset URLs</li><li>Verification URLs</li><li>Social media icons</li></ul><p>Also confirm:</p><ul><li>HTTPS is used</li><li>UTM parameters are correct</li><li>Links aren&#x2019;t expired</li></ul><hr><h1 id="6-verify-attachments"><strong>6. Verify Attachments</strong></h1><p>If your email includes attachments:</p><ul><li>Correct filename</li><li>Correct MIME type</li><li>Opens successfully</li><li>File isn&#x2019;t corrupted</li><li>File size is reasonable</li><li>Downloads quickly</li></ul><p>Examples include:</p><ul><li>PDFs</li><li>CSV exports</li><li>Invoices</li><li>Reports</li><li>Images</li></ul><hr><h1 id="7-check-smtp-delivery"><strong>7. Check SMTP Delivery</strong></h1><p>Once the email leaves your application, SMTP becomes important.</p><p>Verify:</p><ul><li>SMTP connection succeeds</li><li>Correct sender is used</li><li>Correct recipient is used</li><li>Server accepted the message</li><li>Provider returned a successful response</li><li>No retries occurred</li><li>No unexpected delays</li></ul><p>Understanding the SMTP conversation often makes diagnosing delivery problems much easier.</p><hr><h1 id="8-verify-email-headers"><strong>8. Verify Email Headers</strong></h1><p>Headers contain valuable information for debugging.</p><p>Some important headers include:</p><ul><li>From</li><li>To</li><li>Date</li><li>Subject</li><li>Message-ID</li><li>Reply-To</li><li>Return-Path</li><li>MIME-Version</li><li>Content-Type</li></ul><p>Authentication headers are equally important:</p><ul><li>Authentication-Results</li><li>DKIM-Signature</li><li>SPF results</li><li>DMARC results</li></ul><p>Many delivery problems can be diagnosed simply by inspecting headers.</p><hr><h1 id="9-verify-authentication"><strong>9. Verify Authentication</strong></h1><p>Modern email depends heavily on authentication.</p><p>Ensure:</p><p>&#x2705; SPF passes</p><p>&#x2705; DKIM passes</p><p>&#x2705; DMARC passes</p><p>Also verify alignment between:</p><ul><li>Envelope sender</li><li>From address</li><li>DKIM domain</li></ul><p>Authentication failures are one of the biggest causes of spam filtering.</p><hr><h1 id="10-inspect-the-mime-structure"><strong>10. Inspect the MIME Structure</strong></h1><p>Every email is actually a MIME document.</p><p>A typical transactional email contains:</p><ul><li>multipart/alternative</li><li>Plain-text body</li><li>HTML body</li><li>Attachments (optional)</li><li>Inline images (optional)</li></ul><p>Malformed MIME structures often cause strange rendering issues.</p><hr><h1 id="11-verify-deliverability"><strong>11. Verify Deliverability</strong></h1><p>Sending an email successfully doesn&#x2019;t guarantee inbox delivery.</p><p>Check:</p><ul><li>Spam folder placement</li><li>Blacklists</li><li>SPF alignment</li><li>DKIM alignment</li><li>DMARC policy</li><li>Reputation</li><li>Sending domain</li><li>Bounce reports</li></ul><p>Deliverability should be tested continuously&#x2014;not just once.</p><hr><h1 id="12-test-accessibility"><strong>12. Test Accessibility</strong></h1><p>Emails should be usable by everyone.</p><p>Check:</p><ul><li>Alt text on images</li><li>Logical heading structure</li><li>Sufficient color contrast</li><li>Readable font sizes</li><li>Descriptive link text</li></ul><p>Avoid:</p><p>Click here</p><p>Prefer:</p><p>View your invoice</p><hr><h1 id="13-validate-tracking"><strong>13. Validate Tracking</strong></h1><p>If your emails include analytics:</p><p>Verify:</p><ul><li>Open tracking</li><li>Click tracking</li><li>Tracking pixels load</li><li>Analytics events fire</li><li>UTM parameters are correct</li></ul><p>Also ensure tracking doesn&#x2019;t interfere with deliverability.</p><hr><h1 id="14-perform-a-final-manual-review"><strong>14. Perform a Final Manual Review</strong></h1><p>Before shipping, send the email to yourself.</p><p>Read it as a real user would.</p><p>Ask yourself:</p><ul><li>Would I trust this email?</li><li>Is everything easy to read?</li><li>Does it look professional?</li><li>Does every button work?</li><li>Does every link work?</li><li>Does it render well on desktop?</li><li>Does it render well on mobile?</li></ul><p>Small issues become much easier to spot when viewing the final email instead of the template.</p><hr><h1 id="how-kurrier-helps"><strong>How Kurrier Helps</strong></h1><p>Many of these checks require switching between multiple tools.</p><p>With Kurrier, they&#x2019;re available in one place.</p><p>You can inspect:</p><ul><li><strong>Preview</strong> &#x2014; See exactly what the recipient will receive.</li><li><strong>HTML</strong> &#x2014; Review the rendered HTML source with syntax highlighting.</li><li><strong>Plain Text</strong> &#x2014; Verify the text alternative.</li><li><strong>Raw Message</strong> &#x2014; Inspect the complete RFC 5322 email.</li><li><strong>Headers</strong> &#x2014; Analyze SMTP and authentication headers.</li><li><strong>SMTP</strong> &#x2014; Review SMTP conversation details and delivery information.</li><li><strong>JSON</strong> &#x2014; Inspect the normalized email object.</li><li><strong>Delivery</strong> &#x2014; Follow the complete delivery timeline.</li></ul><p>Whether you&#x2019;re debugging a production issue, validating a new transactional email, or reviewing a customer&#x2019;s reported problem, having every part of the message available in a single interface makes troubleshooting dramatically faster.</p><hr><p>Email remains one of the most important communication channels for modern applications, yet it&#x2019;s often one of the least tested.</p><p>A thorough review isn&#x2019;t just about making an email look good - it ensures messages are delivered, trusted, accessible, and easy to debug when something goes wrong.</p><p>Before your next release, walk through this checklist from top to bottom. Spending a few extra minutes validating your emails can save hours of debugging later - and provide a much better experience for your users.</p>]]></content:encoded></item><item><title><![CDATA[Every email tells a story. Most tools only show you the ending.]]></title><description><![CDATA[Email has become critical infrastructure, yet understanding what happened to a message is still surprisingly difficult. Here’s why we’re building Kurrier as an email observability platform for developers, support, and operations teams.]]></description><link>https://www.kurrier.io/blog/every-email-tells-a-story-most-tools-only-show-you-the-ending/</link><guid isPermaLink="false">6a6c4f6400cd7a00078bcdc8</guid><category><![CDATA[Email]]></category><category><![CDATA[Email Infrastructure]]></category><category><![CDATA[Observability]]></category><category><![CDATA[Deliverability]]></category><category><![CDATA[Engineering]]></category><dc:creator><![CDATA[Krishna Rokhale]]></dc:creator><pubDate>Fri, 31 Jul 2026 07:34:26 GMT</pubDate><media:content url="https://www.kurrier.io/blog/content/images/2026/07/image-landing.jpg" medium="image"/><content:encoded><![CDATA[<img src="https://www.kurrier.io/blog/content/images/2026/07/image-landing.jpg" alt="Every email tells a story. Most tools only show you the ending."><p>We&#x2019;re building Kurrier to make email observable&#x2014;not just deliverable.</p><p><strong>Email has become critical infrastructure</strong></p><p>Whether you&#x2019;re running a SaaS product, an ecommerce store, a bank, or an internal platform, email is one of the most important parts of your application.</p><p>Password resets.</p><p>Invoices.</p><p>Deployment notifications.</p><p>Security alerts.</p><p>Support conversations.</p><p>Authentication codes.</p><p>Every one of these depends on email working correctly.</p><p>Yet when something goes wrong, most teams end up jumping between multiple tools trying to answer one simple question:</p><p><strong>What actually happened to this email?</strong></p><hr><h2 id="the-current-workflow-is-broken"><strong>The current workflow is broken</strong></h2><p>A missing email usually sends developers and support teams down a rabbit hole.</p><p>You might check:</p><ul><li>your application logs</li><li>your SMTP provider</li><li>SES or Mailgun dashboards</li><li>raw email source</li><li>message headers</li><li>SPF/DKIM/DMARC</li><li>customer support tickets</li><li>Slack conversations</li><li>browser email clients</li></ul><p>Each tool answers a small piece of the puzzle.</p><p>None of them tell the complete story.</p><hr><h2 id="we-think-email-deserves-observability"><strong>We think email deserves observability</strong></h2><p></p><p>Infrastructure teams have observability.</p><p>Applications have observability.</p><p>Databases have observability.</p><p>Email rarely does.</p><p>Instead of simply showing that an email was &#x201C;sent,&#x201D; we want to answer questions like:</p><ul><li>What did the recipient actually receive?</li><li>Which SMTP server handled the message?</li><li>Which route did it take?</li><li>Did authentication pass?</li><li>Was it delayed?</li><li>Was it modified?</li><li>Why did it bounce?</li><li>Who investigated it?</li><li>Was it replayed?</li></ul><hr><h2 id="introducing-kurrier-io"><strong>Introducing Kurrier IO</strong></h2><p></p><p>Kurrier started as a collaborative email workspace.</p><p>That foundation is still there.</p><p>But over the past year we&#x2019;ve been building something much larger.</p><p>Kurrier IO is becoming a workspace for understanding every email.</p><p>Instead of switching between five different dashboards, you can inspect everything in one place.</p><p>For every message you can view:</p><ul><li>Rendered preview</li><li>HTML</li><li>Plain text</li><li>Raw source</li><li>Headers</li><li>SMTP metadata</li><li>Structured JSON</li><li>Delivery timeline</li><li>Attachments</li><li>Team activity</li></ul><hr><h2 id="built-on-top-of-your-existing-providers"><strong>Built on top of your existing providers</strong></h2><p>Kurrier isn&#x2019;t another email provider.</p><p>It doesn&#x2019;t ask you to migrate.</p><p>Whether you use:</p><ul><li>Amazon SES</li><li>Mailgun</li><li>Postmark</li><li>SMTP</li><li>Google Workspace</li></ul><p>Kurrier works alongside your existing infrastructure.</p><p>Your providers stay exactly where they are.</p><p>Kurrier simply provides the visibility and tooling that has traditionally been missing.</p><hr><h2 id="built-for-the-people-who-solve-email-problems"><strong>Built for the people who solve email problems</strong></h2><p>Kurrier  is designed for:</p><ul><li>Developers</li><li>Support engineers</li><li>Platform teams</li><li>DevOps</li><li>Customer support</li><li>Email operations</li></ul><p>The people who are asked:</p><p>&#x201C;The customer didn&#x2019;t receive the email.&#x201D;</p><hr><h2 id="collaboration-when-you-need-it"><strong>Collaboration when you need it</strong></h2><p>Sometimes investigating an email is a solo task.</p><p>Sometimes it becomes a team effort.</p><p>That&#x2019;s why Kurrier also includes:</p><ul><li>Assignments</li><li>Priorities</li><li>Internal comments</li><li>Activity history</li><li>APIs</li><li>Webhooks</li><li>Automation</li></ul><p>Because understanding an email is only half the job.</p><p>The other half is resolving the issue.</p><hr><h2 id="this-is-just-the-beginning"><strong>This is just the beginning</strong></h2><p>Over the coming months we&#x2019;ll continue expanding Kurrier&#x2019;s observability capabilities with richer delivery diagnostics, identity and provider health, replay tooling, and more ways to understand the journey every email takes.</p><p>We believe email deserves first-class tooling.</p><p>And we&#x2019;re excited to share what we&#x2019;re building.</p><hr><p><strong>Try Kurrier today &#x2192; https://www.kurrier.io</strong></p><hr>]]></content:encoded></item><item><title><![CDATA[Introducing Kurrier: An Open Source Email Platform Built for Developers]]></title><description><![CDATA[Kurrier is an open-source email platform that combines transactional email, webmail, storage, calendars, contacts, and developer APIs into a single self-hostable stack built on open standards.]]></description><link>https://www.kurrier.io/blog/introducing-kurrier-an-open-source-email-platform-built-for-developers/</link><guid isPermaLink="false">6a4cc16e833e080007644144</guid><category><![CDATA[Announcement]]></category><category><![CDATA[Architecture]]></category><category><![CDATA[Open Source]]></category><category><![CDATA[Kurrier]]></category><dc:creator><![CDATA[Krishna Rokhale]]></dc:creator><pubDate>Tue, 07 Jul 2026 09:24:42 GMT</pubDate><media:content url="https://www.kurrier.io/blog/content/images/2026/07/kurrier-blog-2.jpg" medium="image"/><content:encoded><![CDATA[<h5 id="we%E2%80%99re-building-an-open-source-email-platform-that-combines-transactional-email-webmail-storage-calendars-contacts-and-apis-into-one-self-hostable-stack"> We&#x2019;re building an open-source email platform that combines transactional email, webmail, storage, calendars, contacts and APIs into one self-hostable stack.</h5><img src="https://www.kurrier.io/blog/content/images/2026/07/kurrier-blog-2.jpg" alt="Introducing Kurrier: An Open Source Email Platform Built for Developers"><p></p><p>Email remains one of the most important communication protocols on the internet, yet the software around it has become increasingly fragmented. One service sends email, another receives it, another stores attachments, another syncs calendars, and another provides a webmail interface. Integrating these pieces often means stitching together multiple providers, APIs, and databases before you can build even a basic email application. We started Kurrier with a simple goal: to bring these capabilities together into a modern, open-source platform that developers can self-host, extend, and build upon.</p><p><strong>Why another email platform?</strong></p><p>Email is one of the oldest and most successful open standards ever created. SMTP, IMAP, POP3, CalDAV, CardDAV, JMAP, and WebDAV have enabled billions of people and businesses to communicate across providers for decades. The protocols themselves aren&#x2019;t the problem.</p><p>The problem is the developer experience.</p><p>If you want to build anything beyond sending an email, you quickly find yourself stitching together multiple products. You might use Amazon SES or Postmark for outbound mail, IMAP for reading messages, CalDAV for calendars, CardDAV for contacts, object storage for attachments, Redis for queues, and several databases to tie everything together. Each component solves a small piece of the puzzle, but very few solutions provide a cohesive platform that developers can build upon.</p><p>For most teams, this means spending weeks integrating infrastructure before writing the features that actually matter to their users.</p><p><strong>What is Kurrier?</strong></p><p>Kurrier is our attempt to change that. Rather than replacing the protocols that already work, we&#x2019;re building a modern platform around them. Kurrier acts as the glue between SMTP providers, IMAP servers, calendars, contacts, object storage and developer APIs, exposing them through a consistent interface that can be self-hosted or extended as needed.</p><p>Whether you&#x2019;re building an internal company mailbox, a transactional email platform, a customer support inbox, or a complete webmail experience, the underlying infrastructure should already exist. Developers should focus on their application, not on wiring together half a dozen independent systems.</p><p><strong>Built on open standards</strong></p><p>One of Kurrier&#x2019;s core design principles is that it should work with the infrastructure you already have.</p><p>If your organization already uses Amazon SES, Postmark, Mailgun, SendGrid, Gmail, Microsoft 365, or a traditional SMTP server, Kurrier doesn&#x2019;t ask you to migrate. Instead, it connects to your existing providers and builds a modern developer platform on top of them.</p><p>The same philosophy extends to every other part of the stack. Existing IMAP servers become searchable mailboxes, existing CalDAV servers become calendars, CardDAV servers become contacts, and object storage providers become attachment storage. Rather than inventing new protocols, Kurrier embraces the standards that have proven themselves over decades.</p><p>This means you remain in control of your infrastructure while gaining a unified API, a modern web interface, and a consistent data model across every service.</p><p><strong>A Modular Architecture</strong></p><p>Kurrier is intentionally modular.</p><p>Every component can be replaced, extended, or disabled depending on your deployment. Need to use Amazon SES for outbound mail? That&#x2019;s fine. Prefer your own SMTP server? That works too. Want to sync Gmail, Exchange, or a self-hosted IMAP server? They&#x2019;re simply different providers behind the same interface.</p><p>Internally, Kurrier treats email, calendars, contacts, storage, identities, providers, and APIs as independent services connected through a shared workspace model. This allows developers to build anything from a lightweight webmail client to a complete collaboration platform without being locked into a particular vendor.</p><p>At the same time, the entire stack can be self-hosted, making it suitable for organizations that require complete control over their infrastructure and data.</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://www.kurrier.io/blog/content/images/2026/07/image-kurrier-arch.jpg" class="kg-image" alt="Introducing Kurrier: An Open Source Email Platform Built for Developers" loading="lazy" width="1193" height="1318" srcset="https://www.kurrier.io/blog/content/images/size/w600/2026/07/image-kurrier-arch.jpg 600w, https://www.kurrier.io/blog/content/images/size/w1000/2026/07/image-kurrier-arch.jpg 1000w, https://www.kurrier.io/blog/content/images/2026/07/image-kurrier-arch.jpg 1193w" sizes="(min-width: 720px) 720px"><figcaption><span style="white-space: pre-wrap;">Kurrier Architecture</span></figcaption></figure><p><strong>What can you build with Kurrier?</strong></p><p>Kurrier isn&#x2019;t just another webmail client. It&#x2019;s an application platform for email.</p><p>Because every service shares the same workspace, identity, permissions, and API model, developers can build products that would normally require integrating half a dozen different systems.</p><p>Some examples include:</p><ul><li><strong>Modern webmail</strong> with threading, search, attachments, multiple identities, and shared inboxes.</li><li><strong>Transactional email platforms</strong> backed by Amazon SES, Postmark, Mailgun, or your own SMTP infrastructure.</li><li><strong>Customer support systems</strong> with routing, labels, assignments, and conversation history.</li><li><strong>Team collaboration tools</strong> combining email, calendars, contacts, and file storage.</li><li><strong>Internal company mail systems</strong> for organizations that need complete control over their infrastructure.</li><li><strong>Developer platforms</strong> exposing every resource through APIs, webhooks, SDKs, and automation.</li></ul><p>Whether you&#x2019;re building an internal tool or the next generation of email software, Kurrier provides the foundation so you can focus on your application rather than rebuilding email infrastructure.</p><p><strong>Why open source?</strong></p><p>Email is critical infrastructure. We believe infrastructure should be transparent.</p><p>Every line of Kurrier is developed in the open. You can inspect the code, deploy it yourself, extend it with plugins, or contribute improvements back to the community.</p><p>Open source also means you&#x2019;re never locked into a hosted service. You own your data, your infrastructure, and your deployment model.</p><p>If you simply want a hosted version, we&#x2019;ll provide that too - but the software itself will always remain available for developers who want full control.</p><p><strong>Self-hosted or Hosted - Your Choice</strong></p><p>Kurrier is, and will remain, open source. You can deploy it on your own infrastructure, connect it to your existing providers, and customize every aspect of the platform.</p><p>For developers and organizations that don&#x2019;t want to manage their own deployment, we&#x2019;re also building <a href="https://www.kurriermail.com/?ref=kurrier.io" rel="noreferrer">KurrierMail</a> our fully managed hosted service. It provides the same modern experience without the operational overhead of maintaining servers, updates, backups, or infrastructure.</p><p>Whether you choose to self-host with <a href="https://www.kurrier.io/?ref=kurrier.io" rel="noreferrer">Kurrier.io</a> or use <a href="https://www.kurriermail.com/?ref=kurrier.io" rel="noreferrer">KurrierMail</a>, the goal is the same: give you complete control over your email stack without vendor lock-in.</p><p>Learn more about the open-source project at <a href="https://www.kurrier.io/?ref=kurrier.io" rel="noreferrer">Kurrier.io</a>, or join the waitlist for the hosted platform at <a href="https://www.kurriermail.com/?ref=kurrier.io" rel="noreferrer">KurrierMail</a>.</p><p><strong>The Road Ahead</strong></p><p>Kurrier is still in active development, but the vision has remained the same from day one: make building modern email applications dramatically simpler.</p><p>Over the coming months we&#x2019;ll be publishing deep dives into the architecture, implementation details, design decisions, and engineering challenges behind the project. We&#x2019;ll also document how features like Gmail synchronization, IMAP support, full-text search, threading, workspace permissions, CalDAV, CardDAV, and JMAP are implemented.</p><p>If you&#x2019;re interested in building on open standards - or simply curious about how modern email systems work - we&#x2019;d love for you to follow along.</p><p>Welcome to Kurrier.</p>]]></content:encoded></item></channel></rss>