diff --git a/src/Core/Services/Implementations/NoopMailService.cs b/src/Core/Services/Implementations/NoopMailService.cs index cd553a7245..759d43252e 100644 --- a/src/Core/Services/Implementations/NoopMailService.cs +++ b/src/Core/Services/Implementations/NoopMailService.cs @@ -29,12 +29,12 @@ namespace Bit.Core.Services public Task SendOrganizationAcceptedEmailAsync(string organizationName, string userEmail, IEnumerable adminEmails) { - throw new NotImplementedException(); + return Task.FromResult(0); } public Task SendOrganizationConfirmedEmailAsync(string organizationName, string email) { - throw new NotImplementedException(); + return Task.FromResult(0); } public Task SendOrganizationInviteEmailAsync(string organizationName, OrganizationUser orgUser, string token)