我从我的 Rails 应用程序发送电子邮件。它在开发环境中工作得很好,但是在分段上失败了。我得到以下错误:
Net::SMTPAuthenticationError (534-5.7.14 <https://accounts.google.com/ContinueSignIn?plt=AKgnsbtdF0yjrQccTO2D_6)
请注意,我的 I 没有一个域名为我的阶段。
下面是 staging.rb 中的设置
config.action_mailer.delivery_method = :smtp
config.action_mailer.default_url_options = { :host => "my.ip.addr.here:80" }
config.action_mailer.smtp_settings = {
:address => "smtp.gmail.com",
:port => 587,
:domain => 'my.ip.addr.here:80'
:user_name => "my_email_name@gmail.com",
:password => "my_email_password",
:authentication => 'login'
}
求你了,救命。
剪辑。
在添加 :tls => true
选项后,我得到
OpenSSL::SSL::SSLError (Unrecognized SSL message, plaintext connection?)
然后我把端口改为25,现在我得到了这个(延迟30秒) :
Timeout::Error (execution expired)