SmtpSender added

This commit is contained in:
2021-02-04 21:26:26 +01:00
parent a42bfb8c6d
commit 745b6d22a9
6 changed files with 88 additions and 10 deletions

View File

@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Massmailer.Shared
{
public interface IMailer
{
Task SendMailAsync(string email, string subject, string body);
}
}