ruby-on-rails – 动作邮件程序SMTP谷歌应用程序

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 动作邮件程序SMTP谷歌应用程序前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我尝试配置actionmailer以通过谷歌应用程序与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

但是每当gitlab尝试发送电子邮件时:

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

535-5.7.1 Username and Password not accepted

服务器运行ruby 1.9.3p194.为什么谷歌应用程序不接受用户名/密码?

解决方法

它现在有效,我认为问题出在用户名上.它需要用户名中的域名.即问题是
user_name: 'username'

而正确的方式(至少谷歌应用程序)是

user_name : 'username@mydomain.com'
原文链接:https://www.f2er.com/ruby/268691.html

猜你在找的Ruby相关文章