
In-app notifications are only useful if users can actually find what they’re looking for. As your product grows, one inbox list starts to break down—comments, mentions, and updates all end up mixed together. The result is noise, not signal.
That’s why we built Tabs for Courier Inbox.
Tabs let you organize Inbox messages into clear, focused views—so users can jump straight to the category that matters, and teams don’t have to build custom filtering UX or maintain multiple notification surfaces. You define the views, Courier Inbox handles the rest.

Tabs are a pattern users already know. When notifications start to pile up, tabs are the simplest way to break one stream into a few clear categories—without adding a new navigation layer or forcing users to hunt.
That’s the same idea behind Courier Inbox tabs: each tab is a different view of your Inbox, tuned to a specific type of message so users can get to the right notifications faster.

In Courier Inbox, a tab is a filtered view of messages. Instead of building your own “notifications categories” UI, you define tabs with a simple filter object—and Courier Inbox renders each tab as a focused inbox view.
All filtering happens at the tab level. Each tab can use one or more filters, including:
tags to show specific notification typesstatus to filter by read/unreadarchived to include archived notificationsFilters are composable, so you can create tabs like “Mentions”, “Comments”, or “Reactions”—and combine criteria when you need to (for example, “Unread Mentions”).
Here’s a minimal example that creates a single Inbox feed with tabs for different notification types, plus a tab that combines filters.
import { useEffect } from "react";import { CourierInbox, useCourier } from "@trycourier/courier-react";export default function App() {const courier = useCourier();useEffect(() => {courier.shared.signIn({userId: YOUR_USER_ID,jwt: YOUR_JWT, // generate on your backend});}, []);const feeds = [{feedId: "notifications",title: "Notifications",tabs: [{datasetId: "all",title: "All",filter: {},},{datasetId: "comments",title: "Comments",filter: { tags: ["comment"] },},{datasetId: "mentions",title: "Mentions",filter: { tags: ["mention"] },},{datasetId: "mentions-unread",title: "Unread Mentions",filter: { tags: ["mention"], status: "unread" },},{datasetId: "archived",title: "Archived",filter: { archived: true },},],},];return <CourierInbox feeds={feeds} />;}
Tabs are a small feature with a big payoff: a cleaner Inbox, faster scanning, and less notification noise as your product grows. Start with a single feed and a few type-based tabs, then add more views as you learn what users reach for most. Because tabs are just filtered views of the same Inbox, you don’t need a new delivery pipeline or duplicate message streams—you’re simply organizing what’s already there.
Ready to try it? See our docs for Tabs for Courier Inbox.

New settings page, easier to use, with new background colors
Courier settings has been redesigned. Workspace pages and developer pages are grouped separately, every page says what it's for, and the app now comes in light or dark with nine background colors.

Broadcasts: send one-time messages to your users, right from Courier
Broadcasts lets you send a one-time message to a group of your users, now or on a schedule, without leaving Courier.

Build and launch a hosted preference center that looks great on web and mobile
Courier's redesigned Preferences Editor and hosted preference center let you build, preview, and launch a branded notification preference center with no frontend code, plus new bulk APIs to migrate preferences.
© 2026 Courier. All rights reserved.