UFormKit 1.0.5

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

// Install UFormKit as a Cake Tool
#tool nuget:?package=UFormKit&version=1.0.5                

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.

System requirements

  • Umbraco 10.0+,
  • Microsoft SQL Server database

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": "13.0.0",
    "package_id": "UForm Kit",
    "package_version": "1.0.2"
}

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 net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  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. 
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.0.5 75 7/2/2024
1.0.4 70 6/25/2024
1.0.3.2 88 5/30/2024
1.0.3.1 79 5/30/2024
1.0.3 136 4/9/2024
1.0.2 137 2/9/2024
1.0.1 89 1/31/2024
1.0.0 139 12/13/2023

v.1.0.5
- improved reCAPTCHA validation

v.1.0.4
- integrated a scoring system into reCAPTCHA validation

v.1.0.3
- UFormEmailSentNotification added
- New UFormController method that returns JSON result

v.1.0.2
- Storing submitted messages in database
- Collecting telemetry data

v.1.0.1
- Max & min length options and character count
- Demo mode  
- Redirecting to another URL after submissions
- Special mail-tags
- Form autocompletion

v.1.0.0
- Initial release.