1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 05:00:19 -05:00

[AC-1077] Updated Admin reset password subject line of email to “Your admin has initiated account recovery” (#2940)

This commit is contained in:
Rui Tomé 2023-06-01 08:57:35 +01:00 committed by GitHub
parent d1155ee376
commit e837676cf9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -403,7 +403,7 @@ public class HandlebarsMailService : IMailService
public async Task SendAdminResetPasswordEmailAsync(string email, string userName, string orgName)
{
var message = CreateDefaultMessage("Master Password Has Been Changed", email);
var message = CreateDefaultMessage("Your admin has initiated account recovery", email);
var model = new AdminResetPasswordViewModel()
{
UserName = GetUserIdentifier(email, userName),