From bcc424f2aa125cf65b7e5066cf3076fdef4f3a0c Mon Sep 17 00:00:00 2001 From: Philipp Heckel Date: Sun, 26 Dec 2021 14:36:38 +0100 Subject: [PATCH] Oops --- server/mailer.go | 1 - 1 file changed, 1 deletion(-) diff --git a/server/mailer.go b/server/mailer.go index a2eb31ce..22767212 100644 --- a/server/mailer.go +++ b/server/mailer.go @@ -29,7 +29,6 @@ func (s *smtpMailer) Send(senderIP, to string, m *message) error { if err != nil { return err } - println(message) auth := smtp.PlainAuth("", s.config.SMTPUser, s.config.SMTPPass, host) return smtp.SendMail(s.config.SMTPAddr, auth, s.config.SMTPFrom, []string{to}, []byte(message)) }