Add SMTP password field.

Added a password field to the Mail Settings tab in the General Settings panel, ensuring it is saved and retrieved via the `/api/settings` endpoint.
This commit is contained in:
Tola Leng
2025-06-05 18:33:58 +08:00
parent 0739d6b0ce
commit 4ef84b5469
3 changed files with 24 additions and 0 deletions
@@ -36,6 +36,7 @@ export interface GeneralSettings {
port?: number;
host?: string;
username?: string;
password?: string;
authMethod?: string;
tls?: boolean;
localName?: string;