https://github.com/pencsharpener/local-smtp
https://github.com/pencsharpener/local-smtp
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/pencsharpener/local-smtp
- Owner: penCsharpener
- License: mit
- Created: 2022-04-24T12:04:58.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-12-20T23:16:31.000Z (over 3 years ago)
- Last Synced: 2025-01-08T05:07:02.779Z (over 1 year ago)
- Language: C#
- Size: 178 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# LocalSmtp
LocalSmtp is a fork of the backend of rnwood/smtp4dev. Since smtp4dev hasn't been updated in a long time I decided to
* update it to .NET 6
* remove any nodejs dependency by using Blazor Wasm as a front end
* add a bit of clean architecture to the backend
* made some minor adjustments to the UI to work better with MudBlazor
* added possibility to run it as Windows Server on Kestrel (what I'm using mainly)
* dark theme support
What I'm not going to do myself is adding Docker support. I invite anyone to submit Docker support via pull request.

## Adding Migrations
```
cd src\LocalSmtp.Server.Persistence
dotnet ef migrations add InitialCreate -s ..\LocalSmtp\Server\ -o Data\Migrations
```