mirror of
https://github.com/bitwarden/server.git
synced 2025-07-04 09:32:48 -05:00
additional formatting & inclusion of org name
This commit is contained in:
@ -279,12 +279,12 @@ namespace Bit.Core.Services
|
||||
await _mailDeliveryService.SendEmailAsync(message);
|
||||
}
|
||||
|
||||
public async Task SendLicenseExpiredAsync(IEnumerable<string> emails, bool isOrganization)
|
||||
public async Task SendLicenseExpiredAsync(IEnumerable<string> emails, string organizationName = null)
|
||||
{
|
||||
var message = CreateDefaultMessage("License Expired", emails);
|
||||
var model = new LicenseExpiredViewModel
|
||||
{
|
||||
IsOrganization = isOrganization
|
||||
OrganizationName = organizationName,
|
||||
};
|
||||
await AddMessageContentAsync(message, "LicenseExpired", model);
|
||||
message.Category = "LicenseExpired";
|
||||
|
@ -128,7 +128,7 @@ namespace Bit.Core.Services
|
||||
org.RevisionDate = DateTime.UtcNow;
|
||||
await _organizationRepository.ReplaceAsync(org);
|
||||
|
||||
await _mailService.SendLicenseExpiredAsync(new List<string> { org.BillingEmail }, true);
|
||||
await _mailService.SendLicenseExpiredAsync(new List<string> { org.BillingEmail }, org.Name);
|
||||
}
|
||||
|
||||
public async Task ValidateUsersAsync()
|
||||
@ -219,7 +219,7 @@ namespace Bit.Core.Services
|
||||
user.RevisionDate = DateTime.UtcNow;
|
||||
await _userRepository.ReplaceAsync(user);
|
||||
|
||||
await _mailService.SendLicenseExpiredAsync(new List<string> { user.Email }, false);
|
||||
await _mailService.SendLicenseExpiredAsync(new List<string> { user.Email });
|
||||
}
|
||||
|
||||
public bool VerifyLicense(ILicense license)
|
||||
|
Reference in New Issue
Block a user