﻿![]()

#### 

#### About

Transactional emails are one-to-one emails that contain information relevant to a transaction or process the recipient has initiated. When a customer takes action on your website, you can notify them by sending an email. With **Transactional Campaigns**, doing this with Sitecore Send is now easier than ever.

This summer, Sitecore Send [announced](https://moosend.com/blog/transactional-emails-announcement) their new feature: Transactional Campaigns. This article explores this feature in detail and how to use it.

#### Core Functionality

The **Transactional Campaigns** feature provides all the necessary steps to create, personalize, and deliver transactional emails.

##### Create, Design, and Configure

Everything editors could use for marketing emails is now available for transactional emails. This includes:

- Campaign settings: Specify basic settings (such as sender, subject, etc.).
- Design: You now have multiple design options for transactional emails, including using the **Send Designer** to create custom email designs.

![](https://www.brimit.com/-/media/images/blog/sitecore-send/transactiona-campaigns/intro.png)

![](https://www.brimit.com/-/media/images/blog/sitecore-send/transactiona-campaigns/settings.png)

##### Personalize

Personalization can be achieved using [personalization tags](https://doc.sitecore.com/send/en/users/sitecore-send/the-personalization-tags.html) or [**variables**](https://doc.sitecore.com/send/en/users/sitecore-send/add-a-variable-to-a-transactional-email-template.html). 

While **personalization tags** are well-known and commonly used in Sitecore Send marketing campaigns, **variables** are a new addition in Transactional Campaigns. Variable values are provided in the API request body in the substitutions field and are replaced dynamically when the email is sent.

Variable syntax example:

```
{{token_name}}

or 

#token_name#
```

*Note*: Currently, only string values can be used for variables.

These variables can be used in the email design or in the subject line:

![](https://www.brimit.com/-/media/images/blog/sitecore-send/transactiona-campaigns/variables.png)

##### Deliver / Send via API

To send the email to a specific user, you need to call the API. The API documentation is available [here](https://doc.sitecore.com/send/en/developers/api-documentation/manage-a-transactional-campaign.html).

Key features:

- Specify one or multiple recipients, each with individual substitutions.
- BypassUnsubscribeManagement - When set to true or omitted, the message will be delivered to the recipient even if they have unsubscribed from transactional emails.
- Add attachments to the email.
- Multiple options for email content: use the campaign design, provide a web URL, or include SMTP-style email HTML.

With my [SitecoreSend.SDK](https://nuget.org/packages/SitecoreSend.SDK) NuGet package, you can send an email with the following code:

```
var request = EmailRequestBuilder.StartWithCampaign(transactionalCampaignGuid)
    .AddPersonalization(new Personalization("user1@example.com")
    {
        Substitutions = new Dictionary<string, string>()
        {
            {"orderNumber", "123456"},
            {"paymentMethod", "PayTest"},
            {"total", "123.00 USD"},
        },
    })
    .AddPersonalization(new Personalization("user2@example.com")
    {
        Substitutions = new Dictionary<string, string>()
        {
            {"orderNumber", "987654"},
            {"paymentMethod", "TestPay"},
            {"total", "99.01 USD"},
        },
    })
    .Build();

var result = await _send.Transactional.Send(request);
```

The response contains the status of the email sending.

Example response:

```
{
    "Code": 0,
    "Error": null,
    "Context": {
        "ExcludedRecipients": [],
        "TotalAccepted": 2,
        "TotalExcluded": 0
    }
}
```

Sample API call from Postman:

![](https://www.brimit.com/-/media/images/blog/sitecore-send/transactiona-campaigns/send_campaign.png)

To download and use the Postman collection, visit my GitHub repository: [Sitecore Send Postman Collection](https://github.com/izharikov/SitecoreSend/blob/main/api/postman/collection/Sitecore%20Send%20API.postman_collection.json).

#### Features

##### Tracking

As with any other campaign in Send, you can track the following metrics for Transactional Campaigns:

- Sends
- Opens
- Clicks
- Campaign revenue (in Send) and Google Analytics tracking

![](https://www.brimit.com/-/media/images/blog/sitecore-send/transactiona-campaigns/tracking.png)

##### Attachments

Transactional Campaigns allow you to attach files to the email in Base64 format. You simply populate the attachments list field in the API request body.

![](https://www.brimit.com/-/media/images/blog/sitecore-send/transactiona-campaigns/attachments.png)

To add an attachment when sending a Transactional Campaign using [SitecoreSend.SDK](https://nuget.org/packages/SitecoreSend.SDK):

```
var request = EmailRequestBuilder.StartWithCampaign(campaign)
    .AddPersonalization(...)
    // add attachment here:
    .AddAttachment(new EmailAttachment()
    {
        // convert any stream into Base64 string:
        Content = AttachmentTool.StreamToBase64(File.OpenRead("icon.png")),
        // specify content type and file name:
        Type = "image/png",
        FileName = "icon.png",
    })
    .Build();

var result = await _send.Transactional.Send(request);
```

##### Transactional Campaigns vs. SMTP

There are **two options** to send transactional emails using Sitecore Send:

- [SMTP](https://doc.sitecore.com/send/en/users/sitecore-send/use-smtp-to-send-transactional-emails.html) - a traditional and well-known method for sending emails. Previously, this was the only option.
- [Transactional Campaigns](https://doc.sitecore.com/send/en/users/sitecore-send/create-a-transactional-campaign.html) - the new feature described here.

The table below compares these two options:

| *Feature* | **SMTP** | **Transactional Campaigns** |
| --- | --- | --- |
| Email Design in Send | No | Yes |
| Render Email Yourself | Always | Optional |
| HTML-Ready Email Support | Yes | Yes |
| Email Body by URL | No | Yes |
| Attachments | No | Yes |
| Bypass Unsubscribed | Yes ^[1]^ | Yes |
| License | Pro | Moosend+ / Enterprise |

^[1]^ *Bypass Unsubscribed* means that emails are sent even if the recipient has unsubscribed from transactional campaigns. This can be done via the API for SMTP, but it's built-in for Transactional Campaigns.

Overall, transactional campaigns offer more flexibility and features for sending transactional emails, though SMTP remains an option.

#### Conclusions

The **Transactional Campaigns** feature in Sitecore Send is a powerful addition that makes it easier than ever to deliver personalized, one-to-one emails directly through the platform. Transactional Campaigns bring advanced capabilities, allowing marketers and developers to leverage Sitecore Send's design tools, personalization options, and tracking features for transactional emails.

Overall, Transactional Campaigns in Sitecore Send is a significant step forward, offering a more advanced and integrated approach to sending transactional emails.

###### More From Author

[##### Sitecore Marketplace SDK Integration with Vercel AI SDK
February 25, 2026](https://www.brimit.com/blog/sitecore-marketplace-sdl-integration-with-vercel-ai-sdk)[##### Sitecore Marketplace Updates (December 2025)
December 16, 2025](https://www.brimit.com/blog/sitecoreai-marketplace-december-updates)[##### SitecoreAI, Marketer MCP, Agents API, Marketplace — Sitecore Symposium 2025 Recap
November 11, 2025](https://www.brimit.com/blog/sitecoreai-mcp-marketplace-symposium2025-recap)

###### Author

[!\[Igor Zharikov - Senior Sitecore Developer, Sitecore MVP\](https://www.brimit.com/-/jssmedia/feature/blogs/authors/igor-zharikov-2.jpg?h=700&amp;iar=0&amp;w=700&amp;hash=292A84E8CB3E5CE57CA743385CFB1464)
Igor Zharikov
Sitecore MVP / Senior Sitecore Developer](https://www.brimit.com/blog/author?authors=Igor%20Zharikov)

#### More on Sitecore

[!\[How Vercel Will Help You Save Effort When Deploying Sophisticated Sitecore Projects\](https://www.brimit.com/-/jssmedia/project/brimit/blog/2024/vercel_cover-image.png)
#Guides#How-toDXPE-commerce
##### How Vercel Will Help You Save Effort When Deploying Sophisticated Sitecore Projects
Optimize and accelerate the development and deployment of complex multisite Sitecore projects.
Alexei Vershalovich on July 17, 2024](https://www.brimit.com/blog/how-vercel-will-help-you-save-effort-when-deploying-sophisticated-sitecore-projects)

[!\[Training Up Tomorrow's Sitecore MVPs: a Mentoring Success Story\](https://www.brimit.com/-/jssmedia/project/brimit/blog/2023/sitecore-mentoring---cover-image.png)
#How-toDXP
##### Training Up Tomorrow's Sitecore MVPs: a Mentoring Success Story
How to participate in the Sitecore Mentor program and help younger colleagues jump-start a career in Sitecore development.
Sergey Baranov on October 2, 2023](https://www.brimit.com/blog/training-up-tomorrows-sitecore-mvps)

[!\[Going Headless. Part 2: When a Headless CMS Is Your Best Bet (if you have Sitecore)\](https://www.brimit.com/-/jssmedia/project/brimit/blog/2022/headless/adobestock_456986731.jpg)
#How-toDXPE-commerce
##### Going Headless. Part 2: When a Headless CMS Is Your Best Bet (if you have Sitecore)
Discover how a headless CMS can benefit organizations that use Sitecore.
Daniil Raschupkin, Palina Trokhautsava on September 15, 2022](https://www.brimit.com/blog/going-headless-part-2-when-a-headless-cms-is-your-best-bet-if-you-have-sitecore)

![](https://bat.bing.net/action/0?ti=187017043&amp;tm=gtm002&amp;Ver=2&amp;mid=03d7d2f5-313f-4e03-b2d9-293ba57bbc86&amp;bo=2&amp;gtm_tag_source=1&amp;pi=0&amp;lg=en-US&amp;sw=800&amp;sh=600&amp;sc=24&amp;nwd=1&amp;tl=Advanced%20Transactional%20Emails%20Made%20Easy%3A%20Exploring%20Sitecore%20Send's%20Transactional%20Campaigns&amp;kw=sitecore,send,emails,transactional%20campaigns,api&amp;p=https%3A%2F%2Fwww.brimit.com%2Fblog%2Fsitecore-send-transactional-campaigns&amp;r=&amp;lt=293&amp;evt=pageLoad&amp;sv=2&amp;asc=D&amp;cdb=AQAY&amp;rn=573048)