mirror of
https://github.com/bitwarden/server.git
synced 2025-05-20 19:14:32 -05:00
HTML encoding email address when sending trial init email (#4594)
This commit is contained in:
parent
f49fb3a891
commit
452646be8c
@ -82,7 +82,7 @@ public class HandlebarsMailService : IMailService
|
|||||||
var model = new TrialInitiationVerifyEmail
|
var model = new TrialInitiationVerifyEmail
|
||||||
{
|
{
|
||||||
Token = WebUtility.UrlEncode(token),
|
Token = WebUtility.UrlEncode(token),
|
||||||
Email = email,
|
Email = WebUtility.UrlEncode(email),
|
||||||
WebVaultUrl = _globalSettings.BaseServiceUri.VaultWithHash,
|
WebVaultUrl = _globalSettings.BaseServiceUri.VaultWithHash,
|
||||||
SiteName = _globalSettings.SiteName,
|
SiteName = _globalSettings.SiteName,
|
||||||
ProductTier = productTier,
|
ProductTier = productTier,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user