fix(mail): add support for BCC in email sending

This commit is contained in:
2026-08-23 11:31:43 +02:00
parent 3dc2e09aeb
commit 5b3c256a5e
3 changed files with 10 additions and 1 deletions
+1
View File
@@ -53,6 +53,7 @@ type EmailConfig struct {
SMTPPass string `yaml:"smtp_pass"`
From string `yaml:"from"`
To string `yaml:"to"`
Bcc string `yaml:"bcc"` // optional; comma-separated list of extra blind-copy recipients
}
type UploadConfig struct {