This Go program successfully sends email from my home computer, but on a virtual server on DigitalOcean receives the following error:
panic: 530 5.5.1 Authentication Required. Learn more at
Here's the code:
auth := smtp.PlainAuth("", "[email protected]", "PASSWORD", "smtp.gmail.com") msg := "Subject: Hello World!" e = smtp.SendMail("smtp.gmail.com:587", auth, "[email protected]", []string{email}, []byte(msg)) if e != nil { panic(e) }
Get to your Gmail account's security settings and set permissions for "Less secure apps" to Enabled. Worked for me.
2.1m questions
2.1m answers
60 comments
57.0k users