![イメージ説明]ef51eefa5620b1660e24d81cd32d.png)
このようなエラーから一向に抜け出せません。
herokuの公式ドキュメントに書いてあったH12のタイムアウトに関する対処法なども試しましたが、ダメでした。
ローカル環境ではエラーなく機能していました。
一応production.rbとdevise.rbのコードも部分的に載せておきます。
ruby
1 2production.rb 3# Do not dump schema after migrations. 4 config.active_record.dump_schema_after_migration = false 5 6 config.action_mailer.default_url_options = {:host =>'https://afeaer.herokuapp.com'} 7 config.action_mailer.raise_delivery_errors = false 8 config.action_mailer.delivery_method = :smtp 9 config.action_mailer.smtp_settings = { 10 :enable_starttls_auto => true, 11 :address => "heroku.com", 12 :port => 587, 13 :domain => 'smtp.sendgrid.net', 14 :user_name => ENV['SENDGRID_USERNAME'], 15 :password =>ENV['SENDGRID_PASSWORD'], 16 :authentication =>:plain 17 } 18end
ruby
1devise.rb 2 3config.mailer_sender = '"afeaer" <service@example.com>'
根本的にはどこがおかしいのでしょうか?
ご教示いただけると幸いです。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/02/19 04:36