do not send to bcc address

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