mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 22:25:28 +01:00
7 lines
158 B
C#
7 lines
158 B
C#
namespace BTCPayServer.Services.Mails
|
|
{
|
|
public interface IEmailSender
|
|
{
|
|
void SendEmail(string email, string subject, string message);
|
|
}
|
|
}
|