mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-10 23:42:36 -07:00
12 lines
No EOL
266 B
C#
12 lines
No EOL
266 B
C#
using Quartz;
|
|
|
|
namespace Ombi.Services.Jobs
|
|
{
|
|
public interface IMassEmail
|
|
{
|
|
void Execute(IJobExecutionContext context);
|
|
void MassEmailAdminTest(string html, string subject);
|
|
void SendMassEmail(string html, string subject);
|
|
|
|
}
|
|
} |