0ddb34dd20
TDD: IEmailService interface, EmailService resolves member emails + raw addresses (case-insensitive dedup), sends via ISmtpDispatcher, writes a NotificationLog per recipient (sent/failed), and never aborts the batch on a single failure. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
7 lines
174 B
C#
7 lines
174 B
C#
namespace ROLAC.API.Services.Notifications;
|
|
|
|
public interface IEmailService
|
|
{
|
|
Task<NotificationResult> SendAsync(EmailMessage message, CancellationToken ct = default);
|
|
}
|