前提・実現したいこと
ActionMailerを用いてあるアクションが起こった際にユーザーへメール通知をしたいです。
しかしながら現状だと下記のようなエラーがはかれてしまい正しくメール送信が行われません。
下記にも書いておりますがアドレスベタ打ちすればメール送信がされます。
ちなみにこのあたりを参考にし実装しました。
エラー要因含め解決策がわかりましたらご教示いただけますと幸いです。
発生している問題・エラーメッセージ
該当のソースコード
##/mailers/target_mailer.rb class TargetMailer < ApplicationMailer default from: '********@gmail.com' def input_information(idealweight) @idealweight = idealweight mail(subject: "目標を登録しました" ,to: @idealweight.email) end end
##idealweight_controller class IdealweightsController < ApplicationController def new idealweight = Idealweight.where(user_id: current_user.id).first if idealweight.blank? @idealweight = Idealweight.new else redirect_to controller: :dashboards, action: :index end end def create idealweight = Idealweight.where(user_id: current_user.id).first if idealweight.blank? @idealweight = Idealweight.create(idealweight_params) TargetMailer.input_information(@idealweight).deliver_now redirect_to controller: :advicediaries, action: :content else redirect_to controller: :idealweights, action: :warning end end end
##/views/target_mailer/input_information.text.erb 登録完了しました <!--内容は適当です-->
試したこと
ユーザーのアドレスをベタ打ちするとエラーははかれずメールが送信されます。
class TargetMailer < ApplicationMailer default from: '********@gmail.com' def input_information(idealweight) # @user = user @idealweight = idealweight mail(subject: "目標を登録しました" ,to: '********@gmail.com' #userのアドレスベタ打ち) end end
補足情報(FW/ツールのバージョンなど)
Rails 5.2.4.4
ruby 2.5.1
回答1件
あなたの回答
tips
プレビュー