微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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.jb51.cc/ruby/272356.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐