I am trying to use rebex email to send identity confirmation emails in ASP.NET Core MVC (2.1) unfortunately the async code examples I have found don't seem to work in .Net core. The class I have is below - can you give some pointers?
public class EmailSender : IEmailSender
{
public Task SendEmailAsync(string emailTo, string subject, string htmlMessage)
{
throw new NotImplementedException();
}
}