19 lines
445 B
C#
19 lines
445 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNet.Identity;
|
|
|
|
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);
|
|
}
|
|
}
|
|
}
|