From f6029f4a6677a67736a5b922063740db759cf8c1 Mon Sep 17 00:00:00 2001 From: Cipher Vance Date: Mon, 17 Nov 2025 08:37:42 -0600 Subject: [PATCH] fix: fixed syntax error --- internal/email/email.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/email/email.go b/internal/email/email.go index c04e007..70ab768 100644 --- a/internal/email/email.go +++ b/internal/email/email.go @@ -59,7 +59,7 @@ func send(subject, body, recipient string) bool { // Create TLS connection tlsconfig := &tls.Config{ ServerName: cfg.SMTPServer, - MinVersion: tls.VersionTLS12 + MinVersion: tls.VersionTLS12, } conn, err := tls.Dial("tcp", addr, tlsconfig) @@ -146,4 +146,4 @@ func buildHTMLBody(body, unsubLink string) string { } return body + footer -} \ No newline at end of file +}