7 lines
236 B
C#
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);
|
|
}
|