Implement mail service with configuration and settings management

This commit is contained in:
troogs
2026-04-18 01:43:52 +02:00
parent 82d2c48ff7
commit 15780bccee
13 changed files with 235 additions and 4 deletions

View File

@@ -0,0 +1,26 @@
{
"Kestrel": {
"Endpoints": {
"Http": {
"Url": "http://+:56000"
}
}
},
"DetailedErrors": true,
"Settings": {
"TestMode": true,
"Mail": {
"Host": "mail.example.com",
"Port": 587,
"Username": "your_username",
"Password": "your_password",
"FromAddress": "no-reply@example.com",
"UseSsl": true
},
"Terms": {
"Title": "Foodsharing Musterhausen",
"TitleShort": "Musterhausen",
"StepInName": "Neulingstreffen"
}
}
}