DEP08SIHTRPLC - v2.43.0 - Ready to Test

This commit is contained in:
2022-07-29 14:57:38 -07:00
parent c567bb44e0
commit 91b162a7eb
108 changed files with 12877 additions and 0 deletions

View File

@ -0,0 +1,8 @@
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);
}