Gmail: 530 5.5.1 Authentication Required. Learn mo

2019-01-06 20:11发布

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("", "bjorkbjorksen@gmail.com", "PASSWORD", "smtp.gmail.com")
msg := "Subject: Hello\r\n\r\nWorld!"
e = smtp.SendMail("smtp.gmail.com:587", auth, "bjorkbjorksen@gmail.com", []string{email}, []byte(msg))
if e != nil { panic(e) }

4条回答
等我变得足够好
2楼-- · 2019-01-06 20:57

Derp! I signed into the account and there was a "Suspicious login attempt" warning message at the top of the page. After clicking the warning and authorizing the access, everything works.

查看更多
太酷不给撩
3楼-- · 2019-01-06 21:03

Get to your Gmail account's security settings and set permissions for "Less secure apps" to Enabled. Worked for me.

查看更多
戒情不戒烟
4楼-- · 2019-01-06 21:13

You need to go here https://security.google.com/settings/security/apppasswords

then select Gmail and then select device. then click on Generate. Simply Copy & Paste password which is generated by Google.

查看更多
霸刀☆藐视天下
5楼-- · 2019-01-06 21:15

You need turn on the POP mail and IMAP mail feature in setting of the email you are using to send mail. Good luck!

查看更多
登录 后发表回答