修改国际化邮件代码
continuous-integration/drone/push Build is passing Details

IRC_NewDev EICS-V1.2.0
hang 2023-12-29 10:19:46 +08:00
parent 132f90b28e
commit 84d8d33349
1 changed files with 2 additions and 2 deletions

View File

@ -161,7 +161,7 @@ namespace IRaCIS.Application.Services
messageToSend.To.Add(new MailboxAddress(String.Empty, emailAddress));
//主题
//---[来自展影IRC] 关于重置密码的提醒
messageToSend.Subject = _localizer["Mail_IRCResettingPassword "];
messageToSend.Subject = _localizer["Mail_IRCResettingPassword"];
@ -182,7 +182,7 @@ namespace IRaCIS.Application.Services
builder.HtmlBody = string.Format(templateInfo,
"",
//---您正在进行邮箱重置密码操作
_localizer["Mail_ResettingPassword "],
_localizer["Mail_ResettingPassword"],
verificationCode
);
}