1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-18 16:11:28 -05:00

Update unclaimed domains email copy (#5116)

This commit is contained in:
Rui Tomé
2024-12-11 14:48:00 +00:00
committed by GitHub
parent c99b4106f5
commit 170836aba1
6 changed files with 70 additions and 3 deletions

View File

@ -273,6 +273,11 @@ public class NoopMailService : IMailService
return Task.FromResult(0);
}
public Task SendUnclaimedOrganizationDomainEmailAsync(IEnumerable<string> adminEmails, string organizationId, string domainName)
{
return Task.FromResult(0);
}
public Task SendSecretsManagerMaxSeatLimitReachedEmailAsync(Organization organization, int maxSeatCount,
IEnumerable<string> ownerEmails)
{