ssl_smtp_example.go 0p�q>V �a}p>V package main import ( "fmt" "log" "net" "net/mail" "net/smtp" "crypto/tls" ) // SSL/TLS Email Example func main() { from := mail.Address{"", "username@example.tld"} to := mail.Address{"", "username@anotherexample.tld"} subj := "This is the email subject" body := "This is an example body.\n With two lines." // Setup headers headers := make(map[string]string) header