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

9 lines
150 B
C#
Raw Normal View History

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