Blog
COURIERPRODUCT NEWS

Introducing Courier Elemental

Troy Goode

February 23, 2022

courier-elemental-header

Table of contents

Examples

What’s next?

Marking up notification emails with HTML out of the 1990s has always been an annoyance, but now notifications need to span across additional channels such as SMS, Slack, Microsoft Teams, mobile push, web push, etc. They also need to accommodate more dynamic use cases like magic login links, multi-language notifications, and location based alerts that have caused the content formatting challenge to become far more complicated and cumbersome.

For example, if you need to trigger a notification that includes a call-to-action for email, SMS, and Slack, the CTA needs to be an HTML button in email, a plain text link in SMS, and a Slack Block element. This task typically is approached by either creating three separate templates or coding up some if/then statements, both of which get very cumbersome very quickly.

That is why we built Courier Elemental, an omni-channel markup language for notifications. Elemental provides a powerful JSON-based syntax to describe the content of your notification for email, push, chat, or any channel you use to notify users (check out the docs). With Courier Elemental, you can customize the look, language, and structure of your notification based on locale, channel, and other more advanced custom logic. Elemental not only makes the tedious parts of notification development simple, but it also enables more dynamic, engaging notification experiences that feel like a natural exetension of the core product experience. Let’s take a look at some of the notifications that Courier Elemental enables for the Bat Signal app.

Examples

A simple email notification

Copied!

{
"message":{
"to":{
"email":"bruce.wayne@gmail.com"
},
"content":{
"title":"Password Reset!",
"body":"Hi Bruce, here is your temporary password: {{new_password}}"
},
"data":{
"new_password":"hf73*sh1!hfshjsk"
},
"routing":{
"method":"single",
"channels":[
"email"
]
}
}
}

A Simple Email Using Courier Elemental

A multi-channel notification with image and action

Copied!

{
"message": {
"to": {
"email": "bruce.wayne@gmail.com"
},
"content": {
"title": "Citizen In Need",
"body": "Hi Bruce, {{citizen_name}} needs help!",
"elements": [
{
"type": "action",
"style": "button",
"content": "Directions",
"href": "{{directions_to_incident}}"
},
{
"type": "image",
"src": "{{citizen_image}}",
"href": "{{citizen_profile}}",
"align": "center",
"altText": "{{citizen_name}} Image"
}
]
},
"data": {
"citizen_name": "Distressed Damsel",
"citizen_profile": "www.bat-signal.com/profile/distressed-damsel",
"citizen_image": "www.bat-signal.com/profile/distressed-damsel/profile.png",
"directions_to_incident": "https://www.google.com/maps/dir/ghct"
},
"routing": {
"method": "all",
"channels": [
"email",
"sms",
"slack",
"push"
]
}
}
}

A Multichannel Notification With Image and Action using Courier Elemental

An email notification with conditional content

Copied!

{
"message":{
"to":{
"email":"{{citizen_email}}"
},
"content":{
"title":"Rescue Feedback Survey",
"elements":[
{
"type":"text",
"content":"Hi {{citizen_name}}, we're so happy that your rescue was successful!
Please complete this survey and tell us how we did.",
"if":"data.rescue_success === true"
},
{
"type":"text",
"content":"Hi {{citizen_name}}, we're so sorry that your Batman was not able to provide you
with a successful rescue. Please complete this survey and tell us how we did.",
"if":"data.rescue_success === false"
},
{
"type":"action",
"style":"link",
"content":"Complete Survey",
"href":"{{survey_link}}"
}
]
},
"data":{
"citizen_name":"Distressed Damsel",
"citizen_email":"distressed.damsel@gmail.com",
"rescue_success": true,
"survey_link":"https://bit.ly/3BFUief"
},
"routing":{
"method":"single",
"channels":[
"email"
]
}
}
}

An Email Notification With Conditional Content From Courier Elemental

We've also put together an example app on GitHub called the Courier Alert Center to show what notification built with Elemental look like in a real code base.

What’s next?

This is just the beginning for Courier Elemental. In the coming months, we will be releasing new elements as well as new API functionality to open up even more developer use cases. One exciting use case that Courier Elemental will be enabling soon is the ability for our customers to embed a custom notification designer in their product for their end users. Imagine a teaching platform where teachers want to create notifications for students or a CRM for small businesses that wants to enable business owners to notify their customers. This is just one of many new notification use cases that will be coming to Courier in 2022.

If you want to get started building with Courier Elemental today, you only need to do two things.

  1. You need a Courier API key which you can get for free by signing up here (every developer gets 10,000 free sends per month)

  2. Once you have an account you need to configure one of the many notification providers we integrate with.

If you’d like to attend a more in-depth technical demo and ask any questions, please register for Developing With Elemental and join us next week!

Similar resources

what is a customer engagement platform
Product ManagementNotifications LandscapeCourier

Customer Engagement Platform vs CRM: Key Differences Explained

A CRM stores customer data: contacts, purchases, support tickets, and pipeline. It answers "who are our customers?" A customer engagement platform (CEP) orchestrates communication across email, push, SMS, in-app, and chat. It answers "what should we tell them next?" CRMs focus on historical records. CEPs process real-time behavior and trigger messages based on actions. Most teams need both, plus a third layer: notification infrastructure for reliable multi-channel delivery. Courier bridges CEP and infrastructure by combining routing, failover, and delivery tracking with engagement features like preference management, visual templates, and in-app notification centers.

By Kyle Seyler

January 07, 2026

investigation workflow
CourierEngineering

How We Investigate Support Tickets at Courier

Courier's support team resolves complex issues 4X faster using parallel investigation. Here's how it works: when a ticket comes in, an AI agent starts exploring the codebase while the support engineer examines actual customer data. The agent traces code paths and searches past investigations. The human reads event logs and forms hypotheses based on real state. Running both simultaneously catches mismatches fast—the agent sees what could cause a problem, the human sees what actually happened. This post breaks down the workflow, tools, and documentation structure that makes it repeatable.

By Thomas Schiavone

December 18, 2025

Best Notification Messages - Courier
Notifications LandscapeCourier

Top 20 Notification Examples That Actually Drive Engagement

Explore 20 stellar notification examples from industry leaders like Rippling, Slack, FedEx, Crocs, Miro, Trustpilot, OpenTable, and BambooHR that actually drive engagement. From payday celebrations to healthcare reminders, these patterns showcase what makes notifications effective across email, SMS, push, and in-app channels. Courier's enterprise platform enables intelligent routing, multi-channel orchestration, and universal inbox integration to implement these proven patterns at scale.

By Kyle Seyler

September 25, 2025

Multichannel Notifications Platform for SaaS

Products

Platform

Integrations

Customers

Blog

API Status

Subprocessors


© 2026 Courier. All rights reserved.