all repos — flounder @ 285e08242443d7803b1beb2b522f6ca183db6ef5

A small site builder for the Gemini protocol

Remove CC
alex wennerberg alex@alexwennerberg.com
Sat, 09 Jan 2021 23:07:32 -0800
commit

285e08242443d7803b1beb2b522f6ca183db6ef5

parent

6d4ee53714f7f3d723f18977d5baf458c31fb800

1 files changed, 0 insertions(+), 1 deletions(-)

jump to
M mail.gomail.go

@@ -9,7 +9,6 @@ func SendEmail(email string, subject string, body string) {

auth := smtp.PlainAuth("", c.SMTPUsername, c.SMTPPassword, "smtp.migadu.com") msg := "From: " + c.SMTPUsername + "\n" + "To: " + email + "\n" + - "Cc: " + c.SMTPUsername + "\n" + "Subject:" + subject + "\n" + body err := smtp.SendMail(c.SMTPServer, auth, c.SMTPUsername, []string{email}, []byte(msg))