2757869176
Add contract validation, SMTP delivery results, terminal failure context, neutral development seeding, and local Docker setup. Ref: IT-1033
14 lines
363 B
C#
14 lines
363 B
C#
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);
|
|
}
|