mirror of
https://github.com/streetwriters/notesnook-sync-server.git
synced 2026-02-12 19:22:45 +00:00
20 lines
469 B
C#
20 lines
469 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
|
|
);
|
|
}
|
|
}
|