UFormKit 2.0.0

dotnet add package UFormKit --version 2.0.0
                    
NuGet\Install-Package UFormKit -Version 2.0.0
                    
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="UFormKit" Version="2.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="UFormKit" Version="2.0.0" />
                    
Directory.Packages.props
<PackageReference Include="UFormKit" />
                    
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 UFormKit --version 2.0.0
                    
#r "nuget: UFormKit, 2.0.0"
                    
#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 UFormKit@2.0.0
                    
#: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=UFormKit&version=2.0.0
                    
Install as a Cake Addin
#tool nuget:?package=UFormKit&version=2.0.0
                    
Install as a Cake Tool

UForm Kit Overview

UForm Kit is a package for Umbraco which enables you to create and manage multiple contact forms on your site, and customize the form and the mail contents flexibly with simple markup.

UForm Kit is heavily inspired and influenced by the ContactForm7 plugin for WordPress - https://wordpress.org/plugins/contact-form-7/ and we feel that the Umbraco community would benefit from similar solution.

Version compatibility

UForm Kit Umbraco .NET
2.x 17 .NET 10
1.x 10, 11, 12, 13 .NET 6, 7, 8

Both lines share the same package ID, so dotnet add package UFormKit resolves the right one from your project's target framework. Pin with -v only if you need a specific version.

System requirements

  • Umbraco 17 (UForm Kit 2.x) or Umbraco 10-13 (UForm Kit 1.x)
  • SQL Server or SQLite

Installation

Command line

UForm Kit can be installed using the NuGet Package Manager, by running the following command at the command line prompt in your web project folder.

dotnet add package UFormKit

Visual Studio

In Visual Studio, you can use the NuGet Package Manager GUI from the Tools menu, by selecting Tools > NuGet Package Manager > Manage NuGet Packages for Solution. Alternatively, you can run the following command from the NuGet Package Manager Console:

Install-Package UFormKit

Upgrading

Command line

UForm Kit can be upgraded to the latest version by running the following command at the command line prompt from your web project folder.

dotnet add package UFormKit

Visual Studio

In Visual Studio, you can use the NuGet Package Manager GUI from the Tools menu, by selecting Tools > NuGet Package Manager > Manage NuGet Packages for Solution.

Telemetry statistics

Since version 1.0.2, our UForm Kit package has been collecting telemetry data. This provides us with insights to which Umbraco and package versions being used, so that we can make informed decisions on how to focus our future development efforts. The data is sent anonymously, no personal or sensitive data is collected.

What type of data is being captured?

An example of the data captured is as follows.

{
    "umbraco_id": "0403E47E-EFE7-4CF2-8E97-148681DAFC10",
    "umbraco_version": "17.0.0",
    "package_id": "UForm Kit",
    "package_version": "2.0.0"
}

How to disable telemetry?

If you would prefer to opt-out and disable the telemetry feature, add this option in your appsettings.json file:

{
  "UFormKit": {
    "DisableTelemetry": true
  }
}
Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  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
2.0.0 300 8/14/2026
1.0.10 792 7/28/2025
1.0.9 2,642 4/25/2025
1.0.8 2,199 12/9/2024
1.0.7 2,836 11/7/2024
1.0.6 323 11/5/2024
1.0.5 609 7/2/2024
1.0.4 197 6/25/2024
1.0.3.2 209 5/30/2024
1.0.3.1 207 5/30/2024
1.0.3 278 4/9/2024
1.0.2 280 2/9/2024
1.0.1 191 1/31/2024
1.0.0 275 12/13/2023

Support for Umbraco 17 (.NET 10). Umbraco 10-13 sites stay on the 1.x line.

Breaking: Umbraco 14 removed macros, so the insertUForm macro is gone - place forms with @await Component.InvokeAsync("UForm", new { id }) instead.

The id argument now also accepts the form node's GUID key, as a Guid or as a string; integer ids keep working. The Umbraco 14+ backoffice shows the key rather than the integer id, so the key is what you can copy out of the Info tab.