XperienceCommunity.FormNotifications
1.8.4
dotnet add package XperienceCommunity.FormNotifications --version 1.8.4
NuGet\Install-Package XperienceCommunity.FormNotifications -Version 1.8.4
<PackageReference Include="XperienceCommunity.FormNotifications" Version="1.8.4" />
<PackageVersion Include="XperienceCommunity.FormNotifications" Version="1.8.4" />
<PackageReference Include="XperienceCommunity.FormNotifications" />
paket add XperienceCommunity.FormNotifications --version 1.8.4
#r "nuget: XperienceCommunity.FormNotifications, 1.8.4"
#:package XperienceCommunity.FormNotifications@1.8.4
#addin nuget:?package=XperienceCommunity.FormNotifications&version=1.8.4
#tool nuget:?package=XperienceCommunity.FormNotifications&version=1.8.4
Xperience Community: Form Notifications
Description
This package provides Xperience by Kentico administrators with an interface to manage form email notifications. While Kentico has developed autoresponder management into the Xperience by Kentico solution, this package was developed as an alternative to the current implementation specifically for developers upgrading clients from KX13 and older instances where users were able to manage email content and configuration more easily within the administration interface.
One particular feature of note within this extension is that it has been extended to support the use of adding form data into email templates by way of macro expressions. Similar to the behaviour of KX13 and prior versions, macro expressions defined in the recipients, subject or the content of the email will be resolved where they match a field name set within the form structure.

Requirements
Dependencies
Package Installation
Add the package to your application using the .NET CLI
dotnet add package XperienceCommunity.FormNotifications
or via the Package Manager
Install-Package XperienceCommunity.FormNotifications
Quick Start
Install the NuGet package.
Update your Program.cs to register the necessary services.
using XperienceCommunity.FormNotifications;
...
builder.Services.AddFormNotificationsExtensionServices();
Full Instructions
Start your XbyK website.
Log in to the administration site.
Create or edit a form.
Select the Emails option from the menu on the right side of the screen.

Configure your preferred notification settings.
Submit the form.
Watch the magic happen.
Advanced Features
Custom Email Message Transformation
You can create custom handlers to transform email messages before they are sent. This allows you to modify recipients, subject, body, headers, or add custom logic based on form data.
- Create a class that implements
IFormNotificationEmailMessageHandler:
using System.Threading.Tasks;
using CMS.EmailLibrary;
using CMS.OnlineForms;
using XperienceCommunity.FormNotifications.Services;
public class CustomEmailMessageHandler : IFormNotificationEmailMessageHandler
{
public Task<EmailMessage> TransformEmailMessageAsync(
EmailMessage emailMessage,
BizFormItem bizFormItem,
bool isAutoresponder)
{
// Add a prefix to the subject
emailMessage.Subject = $"[{bizFormItem.BizFormInfo.FormDisplayName}] {emailMessage.Subject}";
// Add BCC recipients
emailMessage.BCC = "archive@company.com";
// Add custom logic based on form type
if (isAutoresponder)
{
// Custom logic for autoresponders
}
else
{
// Custom logic for notifications
}
return Task.FromResult(emailMessage);
}
}
- Register your handler in
Program.cs:
builder.Services.AddTransient<IFormNotificationEmailMessageHandler, CustomEmailMessageHandler>();
Multiple handlers can be registered and they will be executed in the order they are registered.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net8.0
- kentico.xperience.admin (>= 30.8.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 1.8.4 | 1,523 | 12/11/2025 |
| 1.8.3-alpha | 386 | 10/24/2025 |
| 1.8.2-alpha | 186 | 10/23/2025 |
| 1.8.1 | 679 | 10/16/2025 |
| 1.8.0-alpha | 181 | 10/15/2025 |
| 1.7.2 | 1,113 | 8/27/2025 |
| 1.7.1 | 251 | 8/2/2025 |
| 1.7.0 | 98 | 8/1/2025 |
| 1.6.0 | 546 | 5/21/2025 |
| 1.5.0 | 178 | 5/11/2025 |
| 1.4.2 | 197 | 5/8/2025 |
| 1.4.1 | 240 | 4/24/2025 |
| 1.4.0 | 838 | 3/26/2025 |
| 1.3.0 | 541 | 3/25/2025 |
| 1.2.1 | 1,263 | 12/2/2024 |
| 1.2.0 | 152 | 11/27/2024 |
| 1.1.1 | 326 | 10/30/2024 |
| 1.1.0 | 151 | 10/30/2024 |
| 1.0.43 | 182 | 10/30/2024 |
| 1.0.42 | 150 | 10/29/2024 |