1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-01 08:02:49 -05:00

[Email] Update welcome content (#1092)

* Initial commit of welcome email update

* Final revisions and updated hosted image urls

* added dynamic year // updated verbiage // fixed typo in text template

* Updated verbiage // changed mustache accessor // updated how year is generated
This commit is contained in:
Vincent Salucci
2021-01-21 14:57:13 -06:00
committed by GitHub
parent 85edc03461
commit 3555b15b91
6 changed files with 104 additions and 96 deletions

View File

@ -18,5 +18,12 @@ namespace Bit.Core.Models.Mail
return WebVaultUrl;
}
}
public string CurrentYear
{
get
{
return DateTime.UtcNow.Year.ToString();
}
}
}
}