feat: add configurable sender name and allow users to choose between system and personal SMTP accounts when sending emails
Build and Push Multi-Platform Images / build-and-push (push) Successful in 34s

This commit is contained in:
2026-05-06 20:49:09 +02:00
parent 8212f733ab
commit d19fd266c7
10 changed files with 72 additions and 5 deletions
@@ -15,6 +15,11 @@ export class UserSettingsController {
return this.userSettingsService.updateSettings(req.user.userId, body);
}
@Get('senders')
async getSenders(@Request() req: any) {
return this.userSettingsService.getAvailableSenders(req.user.userId);
}
@Post('test-smtp')
@HttpCode(200)
async testSmtp(@Body() body: { host: string; port: number; secure: boolean; user: string; pass: string }) {