# New * A name for email dests * Some json response at signin # Fixes * A bad redirect to null at login
11 lines
269 B
C#
11 lines
269 B
C#
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Yavsc.Services
|
|
{
|
|
public interface IEmailSender
|
|
{
|
|
Task<bool> SendEmailAsync(SiteSettings siteSettings, SmtpSettings smtpSettings, string username, string email, string subject, string message);
|
|
}
|
|
}
|