14

任何人都幸运地将 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!'

帮助文档说使用端口 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

有任何想法吗?

ps 我已将 Outlook 配置为使用帮助文档中的设置,并且外发电子邮件工作正常。telnet 到 smtp.zoho.com 465 也可以连接。

4

6 回答 6

31
# 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    
}

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

于 2013-01-30T23:55:17.687 回答
4

供参考:

假设您的域是 abc.com。
假设您的邮件具有不同域的“默认发件人”,例如

  default from: "\"Elephant\" <el@ephant.com>"

除非您使用 zoho 帐户上的相同域更改“默认来源”,否则这将不起作用。
所以,

  default from: "\"Elephant\" <el@abc.com>"

将工作。

于 2015-08-13T09:37:45.700 回答
0

我不确定 Zoho 是否更改了他们的安全设置,但@Tyrel Richey接受的答案对我不起作用。但是,以下内容会:

/config/initializers/action_mailer.rb..

# ActionMailer 邮件配置
ActionMailer::Base.delivery_method = :smtp
ActionMailer::Base.smtp_settings = {
  :address => ENV['SMTP_ADDRESS'],
  :port => ENV['SMTP_PORT'],
  :domain => ENV['SMTP_DOMAIN'],
  :user_name => ENV['SMTP_USERNAME'],
  :password => ENV['SMTP_PASSWORD'],
  :authentication => :login,
  :enable_starttls_auto => 真
}

其中..
:address= smtp.zoho.com
:port=587
:domain正在localhost开发中,而实时 URL 正在生产中(例如example.com

于 2015-04-22T07:26:41.933 回答
0

我像这样使用 Rails 4.2.3 发送邮件......

# config/environments/development.rb
Rails.application.configure do
#...
  config.action_mailer.default_url_options = { host: 'domain' }
  config.action_mailer.smtp_settings = { address: 'smtp.zoho.com', port: 465, user_name: 'username@domain.com', password: 'mypassword', authentication: :login, ssl: true }
end

您当然也可以在生产中使用它,方法是将它添加到config/environments/production.rb

我还设置了电子邮件地址,config/initializers/devise.rb以便我可以发送密码重置指令。

config.mailer_sender = 'noreply@truhawk.com'


参考

于 2016-05-12T14:28:49.167 回答
0

这些设置在生产中对我有用。

Rails.application.routes.default_url_options[:host] = 'eyehawk.io'
  config.action_mailer.default_url_options = { :host => 'eyehawk.io' }
  config.action_mailer.perform_caching = false

  config.action_mailer.delivery_method = :smtp
  config.action_mailer.perform_deliveries = true
  config.action_mailer.raise_delivery_errors = true
  config.action_mailer.default :charset => "utf-8"

  config.action_mailer.smtp_settings = {
      :address              => "smtp.zoho.com",
      :port                 => 587,
      :domain               => "zoho.com",
      :user_name            => "admin@eyehawk.io",
      :password             => ENV['SMTP_PASSWORD'],
      :authentication       => :plain,
      :enable_starttls_auto => true
  }
于 2016-10-05T23:33:44.350 回答
0

使用smtp.zoho.eu而不是smtp.zoho.com作为地址对我有用。

于 2018-03-16T00:32:29.887 回答