fix data keys

This commit is contained in:
2023-02-09 13:23:45 +02:00
parent 9b21d6aafc
commit 6cdd30fe31
3 changed files with 5 additions and 5 deletions

View File

@ -3,6 +3,6 @@ class FormMailer < ApplicationMailer
def received(data) def received(data)
@data = data @data = data
mail(to: data['email'] , subject: "We have received your request") mail(to: data[:email] , subject: "We have received your request")
end end
end end

View File

@ -1,6 +1,6 @@
%h1 %h2
Hello Hello
= @data["name"] = @data[:name]
%p %p
This is an automated message confirming that we have receievd your request This is an automated message confirming that we have receievd your request
@ -15,7 +15,7 @@
%p %p
Your friendly Feenix Bot Your friendly Feenix Bot
%h3 Data received %h4 Data received
- @data.each do |name , value| - @data.each do |name , value|
%p %p

View File

@ -1,4 +1,4 @@
Hello <%= @data['name'] %> Hello <%= @data[:name] %>
This is an automated message confirming that we have receievd your request This is an automated message confirming that we have receievd your request