diff --git a/Server/API/OrganizationManagementController.cs b/Server/API/OrganizationManagementController.cs index 8d682591..350d92ee 100644 --- a/Server/API/OrganizationManagementController.cs +++ b/Server/API/OrganizationManagementController.cs @@ -282,7 +282,7 @@ namespace Remotely.Server.API var inviteURL = $"{Request.Scheme}://{Request.Host}/Invite?id={newInvite.ID}"; await EmailSender.SendEmailAsync(invite.InvitedUser, "Invitation to Organization in Remotely", - $@" + $@"

Hello!

diff --git a/Server/Areas/Identity/Pages/Account/ForgotPassword.cshtml.cs b/Server/Areas/Identity/Pages/Account/ForgotPassword.cshtml.cs index 757837ab..6f9ec063 100644 --- a/Server/Areas/Identity/Pages/Account/ForgotPassword.cshtml.cs +++ b/Server/Areas/Identity/Pages/Account/ForgotPassword.cshtml.cs @@ -66,7 +66,7 @@ namespace Remotely.Server.Areas.Identity.Pages.Account await _emailSender.SendEmailAsync( Input.Email, "Reset Password", - $"

Please reset your Remotely password by clicking here."); + $"

Please reset your Remotely password by clicking here."); return RedirectToPage("./ForgotPasswordConfirmation"); } diff --git a/Server/Areas/Identity/Pages/Account/Manage/Index.cshtml.cs b/Server/Areas/Identity/Pages/Account/Manage/Index.cshtml.cs index bdbdde53..0d9d9423 100644 --- a/Server/Areas/Identity/Pages/Account/Manage/Index.cshtml.cs +++ b/Server/Areas/Identity/Pages/Account/Manage/Index.cshtml.cs @@ -143,7 +143,7 @@ namespace Remotely.Server.Areas.Identity.Pages.Account.Manage await _emailSender.SendEmailAsync( email, "Confirm your email", - $"

Please confirm your Remotely account by clicking here."); + $"

Please confirm your Remotely account by clicking here."); StatusMessage = "Verification email sent. Please check your email."; return RedirectToPage(); diff --git a/Server/Areas/Identity/Pages/Account/Manage/Organization.cshtml.cs b/Server/Areas/Identity/Pages/Account/Manage/Organization.cshtml.cs index b87cdee4..0442b1db 100644 --- a/Server/Areas/Identity/Pages/Account/Manage/Organization.cshtml.cs +++ b/Server/Areas/Identity/Pages/Account/Manage/Organization.cshtml.cs @@ -143,7 +143,7 @@ namespace Remotely.Server.Areas.Identity.Pages.Account.Manage var inviteURL = $"{Request.Scheme}://{Request.Host}/Invite?id={newInvite.ID}"; await EmailSender.SendEmailAsync(invite.InvitedUser, "Invitation to Organization in Remotely", - $@" + $@"

Hello!

diff --git a/Server/Areas/Identity/Pages/Account/Register.cshtml.cs b/Server/Areas/Identity/Pages/Account/Register.cshtml.cs index 68374b63..ca29e958 100644 --- a/Server/Areas/Identity/Pages/Account/Register.cshtml.cs +++ b/Server/Areas/Identity/Pages/Account/Register.cshtml.cs @@ -103,7 +103,7 @@ namespace Remotely.Server.Areas.Identity.Pages.Account protocol: Request.Scheme); await _emailSender.SendEmailAsync(Input.Email, "Confirm your email", - $"

Please confirm your Remotely account by clicking here."); + $"

Please confirm your Remotely account by clicking here."); if (_userManager.Options.SignIn.RequireConfirmedAccount) {