forked from ddrilling/AsbCloudServer
11 lines
224 B
C#
11 lines
224 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace AsbCloudApp.Services
|
|||
|
{
|
|||
|
public interface IEmailService
|
|||
|
{
|
|||
|
void EnqueueSend(IEnumerable<string> addresses, string subject, string htmlBody);
|
|||
|
}
|
|||
|
}
|