mirror of
https://github.com/bitwarden/server
synced 2025-12-18 17:23:28 +00:00
New mail services and implementations
This commit is contained in:
21
src/Core/Services/Implementations/SmtpMailDeliveryService.cs
Normal file
21
src/Core/Services/Implementations/SmtpMailDeliveryService.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user