ZohoのアカウントからEメールを送るには誰もがActionMailerを設定していますか?ZohoのためのRails ActionMailerの設定
これらは私の設定です:しかし
ActionMailer::Base.smtp_settings = {
:address => "smtp.zoho.com",
:port => 465,
:domain => 'example.com',
:user_name => '[email protected]',
: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 => true
の有無にかかわらず試しましたが、それでもタイムアウトします。
> Email Address: [email protected]
> User Name format: [email protected]
> Secure Connection (SSL) Yes
> Outgoing Mail Server Name: smtp.zoho.com
> Outgoing Port No.: 465
> Outgoing Mail Server requires authentication: Yes
任意のアイデア:
具体的には、docsは、次の設定を指定しますか?
p.s.私はhelp docsの設定を使用するためにOutlookを設定し、送信メールは正常に動作します。 smtp.zoho.comへのtelnet 465も接続します。
ローカルホストから試していますか? – Jean
もちろん、SMTPサーバーはリモート(zoho.com)です。これは問題だろうか? – lambinator
Outlookを使用するかどうかわからない場合、マイクロソフトは電子メールの確認などの必要な場合でも、アプリケーションからの送信メールを許さないようです。 – Noz