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.
This commit is contained in:
5
.gitignore
vendored
5
.gitignore
vendored
@@ -90,4 +90,7 @@ wwwroot/
|
|||||||
# SQLite Datenbank-Dateien
|
# SQLite Datenbank-Dateien
|
||||||
*.db
|
*.db
|
||||||
*.db-shm
|
*.db-shm
|
||||||
*.db-wal
|
*.db-wal
|
||||||
|
|
||||||
|
# AppSettings Development files
|
||||||
|
appsettings.Development.json
|
||||||
@@ -30,8 +30,4 @@
|
|||||||
<PackageReference Include="Ulid" Version="1.4.1" />
|
<PackageReference Include="Ulid" Version="1.4.1" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
|
||||||
<Folder Include="Services\" />
|
|
||||||
</ItemGroup>
|
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|||||||
11
API/Services/PlunkEmailSender.cs
Normal file
11
API/Services/PlunkEmailSender.cs
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
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();
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
API/app.db
BIN
API/app.db
Binary file not shown.
@@ -1,8 +0,0 @@
|
|||||||
{
|
|
||||||
"Logging": {
|
|
||||||
"LogLevel": {
|
|
||||||
"Default": "Information",
|
|
||||||
"Microsoft.AspNetCore": "Warning"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Reference in New Issue
Block a user