0
我試圖從我的Rails 3.2應用程序發送設計確認電子郵件。然而,當它被送到我得到以下錯誤:Gmail連接錯誤10061 rails 3.2.1
421 Cannot connect to SMTP server, connect error 10061
即時通訊目前使用我的enviroments/development.rb這些配置設置:
config.action_mailer.raise_delivery_errors = true
config.action_mailer.perform_deliveries = true
ActionMailer::Base.smtp_settings = {
:address => 'smtp.gmail.com',
:domain => 'gmail.com',
:port => 587,
:user_name => '[email protected]',
:password => 'password',
:authentication => :plain,
:enable_starttls_auto => true
}
有什麼在配置不見了?