MailKit-tel

email küldése
This commit is contained in:
2025-04-10 19:04:59 +02:00
parent 5356ef7424
commit 623a3c49b1
8 changed files with 124 additions and 6 deletions
@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace WorkFlowCheck.BL.Services.Interfaces
{
public interface IMessageService
{
Task<bool> SendMailAsync(List<string> recipients, string subject, string htmlBody);
}
}