Getting info on email sent

This commit is contained in:
Paul Schneider 2018-07-12 18:11:29 +02:00
commit 18b5297d71
6 changed files with 28 additions and 13 deletions

View file

@ -1,5 +1,6 @@
using System.Threading.Tasks;
using Yavsc.Abstract.Manage;
namespace Yavsc.Services
{
@ -13,6 +14,6 @@ namespace Yavsc.Services
/// <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);
Task<EmailSentViewModel> SendEmailAsync(string username, string email, string subject, string message);
}
}