- Removed `appsettings.Development.json` and excluded it from version control. - Updated `API.csproj` to remove unnecessary folder reference.
11 lines
264 B
C#
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();
|
|
}
|
|
} |