send to bcc address

This commit is contained in:
Joerg Lehmann 2022-07-19 19:46:34 +02:00
parent 683a8a5fc1
commit 2e3c64eeb8
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ func sendEmail(mail_to, mail_default_authuser, mail_message string) {
getenv("MAILSERVER_HOST", "127.0.0.1")+":"+getenv("MAILSERVER_PORT", "25"),
auth,
getenv("MAILSERVER_USER", mail_default_authuser),
[]string{mail_to},
[]string{mail_to, "info@wo-bisch.ch"},
[]byte(mail_message),
)