btcpayserver/BTCPayServer/Services/Mails/IEmailSender.cs

7 lines
158 B
C#

namespace BTCPayServer.Services.Mails
{
public interface IEmailSender
{
void SendEmail(string email, string subject, string message);
}
}