mirror of
https://github.com/bitwarden/server.git
synced 2026-02-02 23:23:15 +08:00
22 lines
459 B
C#
22 lines
459 B
C#
using System;
|
|
using System.Threading.Tasks;
|
|
using Bit.Core.Models.Mail;
|
|
|
|
namespace Bit.Core.Services
|
|
{
|
|
public class SmtpMailDeliveryService : IMailDeliveryService
|
|
{
|
|
private readonly GlobalSettings _globalSettings;
|
|
|
|
public SmtpMailDeliveryService(GlobalSettings globalSettings)
|
|
{
|
|
|
|
}
|
|
|
|
public Task SendEmailAsync(MailMessage message)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|