Skip to content

Instantly share code, notes, and snippets.

@kevinrodriguez-io
Created June 12, 2018 06:54
Show Gist options
  • Save kevinrodriguez-io/72def2784b05635173b4fdf8b44cfba1 to your computer and use it in GitHub Desktop.
Save kevinrodriguez-io/72def2784b05635173b4fdf8b44cfba1 to your computer and use it in GitHub Desktop.
ASP.Net Core Identity UI 2.1 EmailSender
using Microsoft.AspNetCore.Identity.UI.Services;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace MailSenderApp.Services {
public class EmailSender : IEmailSender {
public Task SendEmailAsync(string email, string subject, string htmlMessage) {
throw new NotImplementedException();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment