2018-03-26 19:27:29 +02:00
|
|
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Yavsc.Services
|
|
|
|
|
{
|
|
|
|
|
public interface IEmailSender
|
|
|
|
|
{
|
2018-05-04 10:45:45 +02:00
|
|
|
Task<bool> SendEmailAsync(string username, string email, string subject, string message);
|
2018-03-26 19:27:29 +02:00
|
|
|
}
|
|
|
|
|
}
|