mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-29 20:04:18 +01:00
8 lines
158 B
C#
8 lines
158 B
C#
namespace BTCPayServer.Services.Mails
|
|
{
|
|
public interface IEmailSender
|
|
{
|
|
void SendEmail(string email, string subject, string message);
|
|
}
|
|
}
|