Forum-Inzynieria1/Trunk/Server/Forum/Forum.DataAccessLayer/Services/MailService.cs

14 lines
326 B
C#
Raw Normal View History

2018-12-18 15:42:39 +01:00
using System.Threading.Tasks;
namespace Forum.DataAccessLayer.Services
{
public class EmailService : IIdentityMessageService
{
public Task SendAsync(IdentityMessage message)
{
// Plug in your email service here to send an email.
return Task.FromResult(0);
}
}
}