14 lines
326 B
C#
14 lines
326 B
C#
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);
|
|
}
|
|
}
|
|
}
|