ruby-on-rails – Zoho的Rails ActionMailer配置

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – Zoho的Rails ActionMailer配置前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
任何人都有运气配置ActionMailer通过Zoho帐户发送电子邮件

这些是我的设置:

ActionMailer::Base.smtp_settings = {
    :address              => "smtp.zoho.com",:port                 => 465,:domain               => 'example.com',:user_name            => 'steve@example.com',:password             => 'n0tmypa$$w0rd',:authentication       => :login
}

但是,调用.deliver超时:

irb(main):001:0> AdminMailer.signup_notification('asfd').deliver
Timeout::Error: Timeout::Error
        from C:/Ruby193/lib/ruby/1.9.1/net/protocol.rb:146:in `rescue in rbuf_fill'
        from C:/Ruby193/lib/ruby/1.9.1/net/protocol.rb:140:in `rbuf_fill'
        from C:/Ruby193/lib/ruby/1.9.1/net/protocol.rb:122:in `readuntil'
        from C:/Ruby193/lib/ruby/1.9.1/net/protocol.rb:132:in `readline'
        from C:/Ruby193/lib/ruby/1.9.1/net/smtp.rb:929:in `recv_response'
        from C:/Ruby193/lib/ruby/1.9.1/net/smtp.rb:552:in `block in do_start'
        from C:/Ruby193/lib/ruby/1.9.1/net/smtp.rb:939:in `critical'
        from C:/Ruby193/lib/ruby/1.9.1/net/smtp.rb:552:in `do_start'
        from C:/Ruby193/lib/ruby/1.9.1/net/smtp.rb:519:in `start'
        from C:/Ruby193/lib/ruby/gems/1.9.1/gems/mail-2.4.4/lib/mail/network/delivery_methods/smtp.rb:144:in `deliver!'

help docs表示使用端口465和SSL认证.我试过有和没有:enable_starttls_auto =>真的,但它仍然超时.

具体来说,docs指定以下设置:

>     Email Address: Username@yourdomain.com
>     User Name format: Username@yourdomain.com
>     Secure Connection (SSL)   Yes
>     Outgoing Mail Server Name: smtp.zoho.com
>     Outgoing Port No.: 465
>     Outgoing Mail Server requires authentication: Yes

有任何想法吗?

附:我已将Outlook配置为使用help docs中的设置,并且外发电子邮件工作正常. telnet到smtp.zoho.com 465也连接.

解决方法

# Action Mailer
ActionMailer::Base.delivery_method = :smtp  
ActionMailer::Base.smtp_settings = {            
  :address              => "smtp.zoho.com",:user_name            => 'someone@somewhere.com',:password             => 'password',:authentication       => :login,:ssl                  => true,:tls                  => true,:enable_starttls_auto => true    
}

这对我有用您的设置可能很好,一些本地网络会阻止这些数据包.我必须通过我的3G网络进行测试.

原文链接:https://www.f2er.com/ruby/272356.html

猜你在找的Ruby相关文章