2016-05-17 18:22:18 +02:00
|
|
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Yavsc.Services
|
|
|
|
|
{
|
|
|
|
|
public interface IEmailSender
|
|
|
|
|
{
|
2018-01-09 14:11:27 +01:00
|
|
|
Task<bool> SendEmailAsync(SiteSettings siteSettings, SmtpSettings smtpSettings, string username, string email, string subject, string message);
|
2016-05-17 18:22:18 +02:00
|
|
|
}
|
|
|
|
|
}
|