rc20-alpha8
mailling [WIP]
This commit is contained in:
parent
afd2ef62d3
commit
46a33ba374
24 changed files with 79 additions and 9383 deletions
|
|
@ -5,6 +5,14 @@ namespace Yavsc.Services
|
|||
{
|
||||
public interface IEmailSender
|
||||
{
|
||||
Task<bool> SendEmailAsync(string username, string email, string subject, string message);
|
||||
/// <summary>
|
||||
/// Sends en email.
|
||||
/// </summary>
|
||||
/// <param name="username">user name in database</param>
|
||||
/// <param name="email">user's email</param>
|
||||
/// <param name="subject">email subject</param>
|
||||
/// <param name="message">message</param>
|
||||
/// <returns>the message id</returns>
|
||||
Task<string> SendEmailAsync(string username, string email, string subject, string message);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue