using Org.BouncyCastle.Asn1.Pkcs; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; using System.Threading.Tasks; namespace MP.Data.Services { public interface IMailService { Task SendAsync(MailKitMailData mailData, CancellationToken ct); } }