mirror of
https://github.com/bitwarden/server
synced 2026-01-04 17:43:53 +00:00
noop mail deli service and moved back to sendgrid
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
using System.Threading.Tasks;
|
||||
using Bit.Core.Models.Mail;
|
||||
|
||||
namespace Bit.Core.Services
|
||||
{
|
||||
public class NoopMailDeliveryService : IMailDeliveryService
|
||||
{
|
||||
public Task SendEmailAsync(MailMessage message)
|
||||
{
|
||||
return Task.FromResult(0);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user