btcpayserver/BTCPayServer/Services/Mails/IEmailSender.cs

11 lines
305 B
C#
Raw Normal View History

using MimeKit;
namespace BTCPayServer.Services.Mails
2017-09-13 15:47:34 +09:00
{
public interface IEmailSender
{
void SendEmail(MailboxAddress email, string subject, string message);
void SendEmail(MailboxAddress[] email, MailboxAddress[] cc, MailboxAddress[] bcc, string subject, string message);
2017-09-13 15:47:34 +09:00
}
}