1
0
mirror of https://github.com/bitwarden/server.git synced 2024-12-11 15:17:44 +01:00
bitwarden-server/src/Core/Services/IMailDeliveryService.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
168 B
C#
Raw Normal View History

using Bit.Core.Models.Mail;
2017-05-30 23:19:46 +02:00
namespace Bit.Core.Services
{
public interface IMailDeliveryService
{
Task SendEmailAsync(MailMessage message);
}
}