using System.Threading.Tasks; namespace Knoks.Framework.Services { public interface IEmailService { Task SendHtml(string subject, string body, string fromАddress, params string[] toАddresses); Task SendHtml(string subject, string body, string fromАddress, EmailDestinationtoАddresses аddresses); Task SendText(string subject, string body, string fromАddress, params string[] toАddresses); Task SendText(string subject, string body, string fromАddress, EmailDestinationtoАddresses аddresses); } }