Courier makes it easy for you to create and orchestrate action-oriented notifications. Automations allow for powerful escalation workflows, and Courier’s omni channel routing enables you to deliver the notification that is most likely to get a response for your users.
Request Demo
Courier’s Automations allow for multiple reminders to one user and then escalation notifications to additional users if action is not taken.
Courier makes it easy to take proper action by reminding users on various channels, including email, SMS, push, in-app, chat, and more.
Courier’s Preferences API allows your users to choose which notifications they want to receive in which channels.
Testimonials
Stop bogging down engineering with notification overhead. Empower product and content teams to own notification content without the need to alter code or redeploy your code. Allow customer success and support to easily search notification logs to uncover issues.
Courier seamlessly integrates with the communication APIs you already use. Easily swap vendors without needing to change code.
Send up to 10,000 notifications every month, for free.
Get started for free
Send up to 10,000 notifications every month, for free.
Get started for free
© 2024 Courier. All rights reserved.
1import { CourierClient } from "@trycourier/courier";2const courier = CourierClient({ authorizationToken: "******************" });34// Example: send a message supporting email & SMS5const { messageId } = await courier.send({6eventId: "courier-quickstart",7recipientId: "37e2c08c-3958-449a-8266-dea286807f65",8profile: { },9data: {10blueiables: "awesomeness",11},12});