namespace HrynCo.NotificationService.Worker.Services.EmailProcessing; using HrynCo.NotificationService.DAL.Abstract.Providers; internal interface ISmtpEmailSender { Task SendAsync( SmtpChannelSettings settings, RenderedEmail email, string recipientEmail, string recipientName, CancellationToken cancellationToken); }