Files
notesnook-sync-server-2026/Streetwriters.Common/Interfaces/IEmailSender.cs
T
2025-04-10 12:19:49 +05:00

20 lines
467 B
C#

using System.Collections.Generic;
using System.Threading.Tasks;
using MimeKit;
using MimeKit.Cryptography;
using Streetwriters.Common.Models;
namespace Streetwriters.Common.Interfaces
{
public interface IEmailSender
{
Task SendEmailAsync(
string email,
EmailTemplate template,
IClient client,
GnuPGContext gpgContext = null,
Dictionary<string, byte[]> attachments = null
);
}
}