do not send to bcc address

This commit is contained in:
Joerg Lehmann 2022-07-20 17:05:45 +02:00
parent 2e3c64eeb8
commit 3f3e6da696
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"), getenv("MAILSERVER_HOST", "127.0.0.1")+":"+getenv("MAILSERVER_PORT", "25"),
auth, auth,
getenv("MAILSERVER_USER", mail_default_authuser), getenv("MAILSERVER_USER", mail_default_authuser),
[]string{mail_to, "info@wo-bisch.ch"}, []string{mail_to},
[]byte(mail_message), []byte(mail_message),
) )