1
0
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:
Kyle Spearrin
2017-06-16 14:24:04 -04:00
parent 06ca566be1
commit 5e9fc6b969
2 changed files with 15 additions and 3 deletions

View File

@ -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);
}
}
}