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.

9 lines
150 B
C#
Raw Normal View History

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