XperienceCommunity.FormNotifications 1.8.4

dotnet add package XperienceCommunity.FormNotifications --version 1.8.4
                    
NuGet\Install-Package XperienceCommunity.FormNotifications -Version 1.8.4
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="XperienceCommunity.FormNotifications" Version="1.8.4" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="XperienceCommunity.FormNotifications" Version="1.8.4" />
                    
Directory.Packages.props
<PackageReference Include="XperienceCommunity.FormNotifications" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add XperienceCommunity.FormNotifications --version 1.8.4
                    
#r "nuget: XperienceCommunity.FormNotifications, 1.8.4"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package XperienceCommunity.FormNotifications@1.8.4
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=XperienceCommunity.FormNotifications&version=1.8.4
                    
Install as a Cake Addin
#tool nuget:?package=XperienceCommunity.FormNotifications&version=1.8.4
                    
Install as a Cake Tool

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.

Xperience by Kentico Form Notifications

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

  1. Install the NuGet package.

  2. Update your Program.cs to register the necessary services.

    using XperienceCommunity.FormNotifications;

    ...

    builder.Services.AddFormNotificationsExtensionServices();

Full Instructions

  1. Start your XbyK website.

  2. Log in to the administration site.

  3. Create or edit a form.

  4. Select the Emails option from the menu on the right side of the screen. Xperience by Kentico Form Notifications

  5. Configure your preferred notification settings.

  6. Submit the form.

  7. 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.

  1. 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);
    }
}
  1. 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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
Loading failed