Getting Started

Overview

UFormKit 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

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

This tutorial serves as an introductory guide to the UFormKit package for Umbraco. Throughout this guide, you will find a range of examples that illustrate how to effectively display a form on your page. Additionally, it explains the customization of forms and email settings, offering detailed insights and instructions for tailoring these elements to your specific needs.

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

Last updated