2018-12-18 15:42:39 +01:00
|
|
|
|
using System.Threading.Tasks;
|
2018-12-19 12:55:35 +01:00
|
|
|
|
using Microsoft.AspNet.Identity;
|
2018-12-01 22:12:59 +01:00
|
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|