14 lines
320 B
C#

using Microsoft.AspNetCore.Identity.UI.Services;
namespace Marco.Pms.Utility
{
public class EmailSender : IEmailSender
{
public Task SendEmailAsync(string email, string subject, string htmlMessage)
{
// Logic to send email
return Task.CompletedTask;
}
}
}