8 lines
269 B
C#
8 lines
269 B
C#
namespace Adaptation.Shared.Methods;
|
|
|
|
public interface ISMTP
|
|
{
|
|
void SendLowPriorityEmailMessage(string subject, string body);
|
|
void SendHighPriorityEmailMessage(string subject, string body);
|
|
void SendNormalPriorityEmailMessage(string subject, string body);
|
|
} |