投稿が作成されたときに表示されるフラッシュ通知に変数を追加しようとしています#{variable}
しかし、私が受け取るメッセージは「#{variable}」だけなので、何かが足りないに違いありません。
これは私のコントローラーです:
def create
@participant = Participant.new(params[:participant])
respond_to do |format|
if @participant.save
mail = params[:email]
format.html { redirect_to @participant, notice: 'Thanks, We will be sending out instructions to: #{mail}' }
format.json { render json: @participant, status: :created, location: @participant }
else
format.html { render action: "new" }
format.json { render json: @participant.errors, status: :unprocessable_entity }
end
end
end
@participantsも変数として使用してみましたが、それでもメッセージに実際の「#{@participants}」しか表示されません。