btcpayserver/BTCPayServer/Services/Mails/IEmailSender.cs
2019-01-22 21:38:39 +09:00

13 lines
259 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace BTCPayServer.Services.Mails
{
public interface IEmailSender
{
void SendEmail(string email, string subject, string message);
}
}