fix: fixed syntax error

This commit is contained in:
Cipher Vance
2025-11-17 08:37:42 -06:00
parent 66300be495
commit f6029f4a66

View File

@@ -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
}
}