2024-04-02 10:39:16 -07:00

6 lines
103 B
C#

namespace Adaptation.Eaf.Core.Smtp;
public interface ISmtp
{
void Send(EmailMessage message);
}