DD.WellWorkover.Cloud/AsbCloudApp/Services/IEmailService.cs

11 lines
285 B
C#
Raw Normal View History

2022-04-11 18:00:34 +05:00
using System.Collections.Generic;
2022-02-28 14:44:26 +05:00
namespace AsbCloudApp.Services
{
public interface IEmailService
{
void EnqueueSend(IEnumerable<string> addresses, string subject, string htmlBody);
void EnqueueSend(string address, string subject, string htmlBody);
2022-02-28 14:44:26 +05:00
}
}