﻿![]()

#### 

#### Introduction

Sitecore Send has announced a new feature: the [Preference Center](https://moosend.com/blog/moosend-preference-center) (check this article to learn about the advantages of this feature).

In this article, I'll describe in detail how to create, manage, and use preferences in Sitecore Send.

#### Managing Preferences

Preferences are managed under each mailing list. A new field has been added (visible under the *Create custom fields* section):

![Preferences field](https://www.brimit.com/-/media/images/blog/sitecore-send/preference-center/preferences_field.png)

After clicking on the field, all preference options can be managed:

![Preferences Options](https://www.brimit.com/-/media/images/blog/sitecore-send/preference-center/preferences_options.png)

In the settings, you can define the page where subscribers can manage their preferences.

![Preferences Page Configuration](https://www.brimit.com/-/media/images/blog/sitecore-send/preference-center/preferences_page_configuration.png)

#### Preferences Management Page

The preferences page, where subscribers can manage their preferences, is defined in the settings. It can be created using Sitecore Send landing pages.

A new component has been added for this purpose:

![Landing Page Preferences Component](https://www.brimit.com/-/media/images/blog/sitecore-send/preference-center/landing_page_preferences_component.png)

The preferences view can then be configured in the component settings:

![Preferences Component Settings](https://www.brimit.com/-/media/images/blog/sitecore-send/preference-center/landing_page_component_settings.png)

#### Using the Preferences Page in Email Campaigns

A link to the preferences page can be added using a personalization tag:

![Preferences Tag](https://www.brimit.com/-/media/images/blog/sitecore-send/preference-center/preferences_personalization_tag.png)

Alternatively, you can use the `#updatePreferences#` syntax:

![Update Preferences Tag](https://www.brimit.com/-/media/images/blog/sitecore-send/preference-center/update_preferences_button.png)

The preferences page for a subscriber looks like this:

![Preferences Page](https://www.brimit.com/-/media/images/blog/sitecore-send/preference-center/subscriber_preferences.png)

#### Preferences in the API

A new field has been added to the subscriber [API endpoints](https://doc.sitecore.com/send/en/developers/api-documentation/get-all-subscribers.html):

![Subscribers API](https://www.brimit.com/-/media/images/blog/sitecore-send/preference-center/api_preferences.png)

You can use it in the [update](https://doc.sitecore.com/send/en/developers/api-documentation/update-a-subscriber.html) or [add](https://doc.sitecore.com/send/en/developers/api-documentation/add-a-new-subscriber.html) endpoints as well:

![Update Subscriber API](https://www.brimit.com/-/media/images/blog/sitecore-send/preference-center/subscribers_update.png)

Mailing list preferences can also be updated using the API:

- [Update mailing list](https://doc.sitecore.com/send/en/developers/api-documentation/update-a-mailing-list.html#request)
- [Create mailing list](https://doc.sitecore.com/send/en/developers/api-documentation/create-a-mailing-list.html#request)

If you're using the [SitecoreSend.SDK](https://www.nuget.org/packages/SitecoreSend.SDK) NuGet package, you can use the following methods to manage preferences:

```
https://www.brimit.com// Update mailing list preferences
var updateListResult = await _send.Lists.Update([LIST_GUID], new MailingListRequest() 
{
    Name = "Test Name 2",
    Preferences = new MailingListPreferencesRequest()
    {
        Options = ["Option1", "Option2"],
        SelectType = PreferenceSelectType.MultiSelect,
    },
});

https://www.brimit.com// Create subscriber with preferences
var response = await _send.Subscribers.Add(listId, new SubscriberRequest()
{
    Email = email,
    Preferences = ["Technology"],
});
```

For more examples, refer to the [tests](https://github.com/izharikov/SitecoreSend/blob/main/dotnet/SitecoreSend.SDK.Tests/Tests/MailingListServiceTests.cs#L24), where you can find how to use the SDK.

#### Conclusion

The Preference Center is a great feature that enhances the user experience for your subscribers. It allows for personalized content, making emails more relevant and providing a better alternative to unsubscribing.

If you have any questions or suggestions, feel free to reach out to me.

###### 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=be8e7ef3-4335-4ad9-b991-b997f73b81fc&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=Sitecore%20Send%20Preference%20Center%20Explained%3A%20Setup,%20Management%20%26%20API&amp;kw=Sitecore%20Send,%20Preference%20Center,%20email%20marketing,%20subscriber%20preferences,%20Sitecore%20Send%20API,%20email%20personalization,%20Sitecore%20Send%20setup,%20mailing%20list%20management,%20Sitecore%20Send%20features,%20Sitecore%20Send%20guide&amp;p=https%3A%2F%2Fwww.brimit.com%2Fblog%2Fsitecore-send-preference-center&amp;r=&amp;lt=326&amp;evt=pageLoad&amp;sv=2&amp;asc=D&amp;cdb=AQAY&amp;rn=506873)