rails turorialを学習中のスーパー初心者です。
11章にて、ローカル環境でのアカウント有効化の実装はうまくいったのですが、production環境で挙動を確認使用とすると、webページ上で「We're sorry, but something went wrong.
If you are the application owner check the logs for more information.」
と表示されます。
###エラーおよび試したこと
特に明確なエラーはなかったのですが、heroku logsを打つと以下のような表示になりました(読みづらくてすみません...)。
2020-10-24T13:24:23.396264+00:00 app[web.1]: I, [2020-10-24T13:24:23.396179 #16] INFO -- : [0a13ff34-0133-4581-82f9-3509bbaae5a8] Completed 500 Internal Server Error in 1424ms (ActiveRecord: 34.7ms | Allocations: 21757)
2020-10-24T13:24:23.397447+00:00 app[web.1]: F, [2020-10-24T13:24:23.397379 #16] FATAL -- : [0a13ff34-0133-4581-82f9-3509bbaae5a8]
2020-10-24T13:24:23.397449+00:00 app[web.1]: [0a13ff34-0133-4581-82f9-3509bbaae5a8] Net::SMTPFatalError (550 The from address does not match a verified Sender Identity. Mail cannot be sent until this error is resolved. Visit https://sendgrid.com/docs/for-developers/sending-email/sender-identity/ to see the Sender Identity requirements
2020-10-24T13:24:23.397450+00:00 app[web.1]: ):
2020-10-24T13:24:23.397450+00:00 app[web.1]: [0a13ff34-0133-4581-82f9-3509bbaae5a8]
2020-10-24T13:24:23.397451+00:00 app[web.1]: [0a13ff34-0133-4581-82f9-3509bbaae5a8] app/models/user.rb:66:in send_password_reset_email' 2020-10-24T13:24:23.397451+00:00 app[web.1]: [0a13ff34-0133-4581-82f9-3509bbaae5a8] app/controllers/password_resets_controller.rb:13:in
create'
2020-10-24T13:24:23.400434+00:00 heroku[router]: at=info method=POST path="/password_resets" host=still-lake-74521.herokuapp.com request_id=0a13ff34-0133-4581-82f9-3509bbaae5a8 fwd="210.4.186.100" dyno=web.1 connect=1ms service=1438ms status=500 bytes=1891 protocol=https
Net::SMTPFatalError のあたりをそのままググったのですが、あまり情報がなくて困っております。
自分では気づけていない初歩的な段階でミスっている可能性があるので、どなたかご教示いただけないでしょうか。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/11/04 12:55