classlib/ExpenseTracker.Application/Common/Interfaces/Services/IEmailSenderService.cs
2024-08-07 21:12:02 +03:00

7 lines
236 B
C#

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