Fake-Mailversand;
This commit is contained in:
16
MultipleChoiceTrainer/Services/EmailSender.cs
Normal file
16
MultipleChoiceTrainer/Services/EmailSender.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
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));
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user