用于Zoho的Rails ActionMailer配置

lam*_*tor 13 ruby-on-rails actionmailer zoho ruby-on-rails-3

任何人都有运气配置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
}
Run Code Online (Sandbox Code Playgroud)

但是,调用.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!'
Run Code Online (Sandbox Code Playgroud)

帮助文档说,使用端口465和SSL认证.我曾经尝试过,:enable_starttls_auto => true但是它仍然超时.

具体而言,文档指定以下设置:

>     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
Run Code Online (Sandbox Code Playgroud)

有任何想法吗?

ps我已经配置Outlook使用帮助文档中的设置和外发电子邮件工作正常.telnet到smtp.zoho.com 465也连接.

Tyr*_*hey 30

# Action Mailer
ActionMailer::Base.delivery_method = :smtp  
ActionMailer::Base.smtp_settings = {            
  :address              => "smtp.zoho.com", 
  :port                 => 465,                 
  :user_name            => 'someone@somewhere.com',
  :password             => 'password',         
  :authentication       => :login,
  :ssl                  => true,
  :tls                  => true,
  :enable_starttls_auto => true    
}
Run Code Online (Sandbox Code Playgroud)

这对我有用.您的设置可能很好,一些本地网络阻止这些类型的数据包.我不得不通过我的3G网络测试它.

  • 我有错误`EOFError:文件结束了'=( (3认同)