17 lines
425 B
C#
17 lines
425 B
C#
using Microsoft.AspNetCore.Identity.UI.Services;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MultipleChoiceTrainer.Services
|
|
{
|
|
public class EmailSender : IEmailSender
|
|
{
|
|
public Task SendEmailAsync(string email, string subject, string htmlMessage)
|
|
{
|
|
return Task.Run(() => System.Threading.Thread.Sleep(0));
|
|
}
|
|
}
|
|
}
|