Files
JudoWeb/API/Services/PlunkEmailSender.cs
Jonas 44b39b4393 Add initial implementation of PlunkEmailSender and update .gitignore.
- Removed `appsettings.Development.json` and excluded it from version control.
- Updated `API.csproj` to remove unnecessary folder reference.
2026-01-25 13:17:14 +01:00

11 lines
264 B
C#

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();
}
}