From d3eeb4565169c8c6e22a1ed5600c5f5a46ea2df2 Mon Sep 17 00:00:00 2001 From: Shannon Date: Mon, 29 May 2017 15:57:59 +0200 Subject: [PATCH] ensures the message is added to the email --- src/Umbraco.Web/Editors/UsersController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Web/Editors/UsersController.cs b/src/Umbraco.Web/Editors/UsersController.cs index 6dd8eac6a9..f67c43204a 100644 --- a/src/Umbraco.Web/Editors/UsersController.cs +++ b/src/Umbraco.Web/Editors/UsersController.cs @@ -268,7 +268,7 @@ namespace Umbraco.Web.Editors { await UserManager.EmailService.SendAsync(new IdentityMessage { - Body = string.Format("You have been invited to the Umbraco Back Office!\n\nClick this link to accept the invite\n\n{0}", link), + Body = string.Format("You have been invited to the Umbraco Back Office!\n\n{0}\n\nClick this link to accept the invite\n\n{1}", userSave.Message, link), Destination = userSave.Email, Subject = "You have been invited to the Umbraco Back Office!" });