SendMail with PLAIN auth
auth := smtp.PlainAuth("", "user@example.com", "pw", "smtp.example.com")
err := smtp.SendMail(
"smtp.example.com:587",
auth,
"from@example.com",
[]string{"to@example.com"},
[]byte("Subject: hi\r\n\r\nhello"),
)