2757869176
Add contract validation, SMTP delivery results, terminal failure context, neutral development seeding, and local Docker setup. Ref: IT-1033
12 lines
309 B
C#
12 lines
309 B
C#
namespace HrynCo.NotificationService.Worker.Services.EmailProcessing;
|
|
|
|
using HrynCo.NotificationService.Contracts.Messages;
|
|
|
|
public interface INotificationResultPublisher
|
|
{
|
|
Task PublishAsync(
|
|
SendEmailMessage message,
|
|
string? deliveryError,
|
|
CancellationToken cancellationToken);
|
|
}
|