namespace ExpenseTracker.Application.Common.Interfaces.Services; public interface IEmailSenderService { Task SendAsync(ICollection recipientAddresses, string subject, string message, CancellationToken cancellationToken); }