using Microsoft.AspNetCore.Identity.UI.Services; namespace API.Services; public class PlunkEmailSender : IEmailSender { public Task SendEmailAsync(string email, string subject, string htmlMessage) { throw new NotImplementedException(); } }