btcpayserver/BTCPayServer/Services/Mails/IEmailSender.cs

13 lines
259 B
C#
Raw Normal View History

2017-09-13 08:47:34 +02:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace BTCPayServer.Services.Mails
2017-09-13 08:47:34 +02:00
{
public interface IEmailSender
{
2019-01-06 15:53:37 +01:00
void SendEmail(string email, string subject, string message);
2017-09-13 08:47:34 +02:00
}
}