using System.Collections.Generic;
namespace AsbCloudApp.Services
{
public interface IEmailService
void EnqueueSend(IEnumerable<string> addresses, string subject, string htmlBody);
void EnqueueSend(string address, string subject, string htmlBody);
}