Action mailer SMTP google apps

2019-02-17 03:55发布

I tried to configure actionmailer to send via google apps with smtp.

config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
:address              => "smtp.gmail.com",
:port                 => 587,
:domain               => "mydomain.com",
:user_name            => "username",
:password             => "password",
:authentication       => 'plain',
:enable_starttls_auto => true  }

config.action_mailer.perform_deliveries = true
config.action_mailer.raise_delivery_errors = true

However whenever gitlab tries to send an e-mail:

Sent mail to user@my.domain.com (10ms)
Completed 500 Internal Server Error in 29ms

535-5.7.1 Username and Password not accepted

Server runs ruby 1.9.3p194. Why doesn't google apps accept the username/password?

2条回答
beautiful°
2楼-- · 2019-02-17 04:26

this works for me:

config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
:address              => "smtp.gmail.com",
:port                 => 587,
:domain               => "gmail.com",
:user_name            => "you@gmail.com",
:password             => "password",
:authentication       => 'plain',
:enable_starttls_auto => true  }

Try setting the domain to gmail.com

查看更多
虎瘦雄心在
3楼-- · 2019-02-17 04:34

It works now, I think the problem was with the username. it needs the domain in the username. i.e. the problem was

user_name: 'username'

Whereas the correct way (at least for google apps) is

user_name : 'username@mydomain.com'
查看更多
登录 后发表回答