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.
Add the package to your application using the .NET CLI
dotnet add package XperienceCommunity.FormNotifications
or via the Package Manager
Install-Package XperienceCommunity.FormNotifications
-
Install the NuGet package.
-
Update your Program.cs to register the necessary services.
using XperienceCommunity.FormNotifications;
...
builder.Services.AddFormNotificationsExtensionServices();