8 lines
268 B
C#
8 lines
268 B
C#
namespace Zentral.Domain.Interfaces;
|
|
|
|
public interface IEmailSender
|
|
{
|
|
Task SendEmailAsync(string to, string subject, string body, bool isHtml = true);
|
|
Task SendEmailAsync(string to, string subject, string body, List<string> attachments, bool isHtml = true);
|
|
}
|