mirror of
https://github.com/bitwarden/server.git
synced 2025-07-02 08:32:50 -05: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