Skip to main content
Courier supports sending notifications in multiple languages. You can localize content using:
  • Manual approaches: Create language-specific channels or templates in the designer
  • Variable-based: Pass translated content in your send request
  • API-driven: Use the localization API directly or integrate with a translation management system (TMS)
For a step-by-step walkthrough, see How to Internationalize Notifications.

Setting a User’s Locale

Include a locale property in the user’s profile or in the send request:
The locale value should follow ISO 639-1 format (e.g., en, en_US, fr, fr_FR, de_DE).

Previewing Localized Content

Include a locale in your test event’s profile to preview the localized version:
Localized preview

Localized preview with fr_FR locale

Without a locale in the test event, the preview shows the default (source) language.

API-Driven Localization

API-driven localization is available on Business and Enterprise plans.
Courier provides APIs to programmatically manage translations, either for direct scripting or integration with a translation management system (TMS).

Key Concepts

Supported Block Types

Draft vs Published Paths

Every localization endpoint is available at two paths: For programmatic locale updates (scripts, CI/CD, bulk imports), the non-draft paths are simpler since they skip the publish step entirely. Use the draft paths when you need a review or approval step before translations go live, or when integrating with a TMS.

API Endpoints

All endpoints require an Authorization: Bearer {api_key} header.

Step 1: Fetch Translatable Content

Start by fetching your template’s content to get the block and channel IDs you’ll need for the update endpoints.
Response:
When updating translations, preserve the <variable> and <highlight> tags with their original IDs. These are required for proper variable substitution.

Step 2: Update Translations

Choose the approach that fits your workflow.

Option A: Update locales for a specific block

Use the block ID from the content response to update translations for a single block.
Returns 204 No Content on success. For list blocks, the body uses an object with parent and children keys instead of a plain string:

Option B: Update locales for a specific channel

Use the channel ID from the content response to update channel-level translations (e.g., email subject, push title). The body is a plain string per locale; the backend automatically maps the value to subject for email channels or title for push channels based on the channel type.
Returns 204 No Content on success.
The per-channel endpoint takes a plain string per locale. For email channels, this sets the subject line. For push channels, it sets the title. The bulk update endpoint uses a different format where you specify { "subject": "..." } or { "title": "..." } explicitly.

Option C: Bulk-update all locales at once

Update translations for all blocks and channels in a single request.
Returns 204 No Content on success.

Publishing Draft Changes

If you use the /draft/ endpoints, your translations are saved to the draft version and need to be published before they take effect. Two options: Option 1: Direct publish (simplest)
Option 2: TMS checks workflow If your template was submitted for translation via the Studio UI, you can complete the submission by resolving all checks. This auto-publishes the draft when every check is resolved.
If you don’t need a review step, skip the draft paths entirely. The non-draft endpoints update the published template directly with no publish step required.

TMS Integration Workflow

For teams using a translation management system, Courier supports a webhook-driven workflow:
  1. Submit for translation: When a template is submitted in Studio, Courier sends a notification:submitted webhook
  2. Fetch content: Your TMS fetches translatable content via GET /notifications/{id}/draft/content
  3. Update translations: Push translated content back via the /draft/ locale endpoints
  4. Complete the process: Resolve checks via PUT /notifications/{id}/{submissionId}/checks to auto-publish
Internationalization workflow diagram

TMS translation workflow

Webhooks

Configure webhooks in Settings → Webhooks to receive events for the TMS workflow:
  • notification:submitted — Template submitted for translation
  • notification:published — Template published
  • notification:canceled — Submission canceled

Right-to-Left (RTL) Language Support

Courier automatically detects RTL content in email templates and applies direction: rtl CSS styling at the block level. When a text block contains content in an RTL language like Arabic or Hebrew, Courier switches alignment from left to right and sets the text direction. This is content-driven; you don’t need to set a dir attribute or add custom CSS. RTL detection applies to text, quote, markdown, and list blocks. Text blocks get full treatment (direction and alignment), while other block types receive the direction: rtl style. Action buttons do not include RTL detection.
If you use a custom brand template override, you may need to add .text-rtl { direction: rtl; } to your brand’s custom head styles. The built-in email templates (line, none, inbox) include this by default.

What’s Next

Internationalizing Notifications

Step-by-step tutorial for sending multi-language notifications.

Elemental Locales

Localize Elemental templates programmatically.

Send Conditions

Route to channels based on locale.

Handlebars Formatting

Format dates and numbers for locales.