form mailer
This commit is contained in:
21
app/views/form_mailer/received.html.haml
Normal file
21
app/views/form_mailer/received.html.haml
Normal file
@ -0,0 +1,21 @@
|
||||
%h1 Hello
|
||||
= @data["name"]
|
||||
|
||||
%p
|
||||
This is an automated message confirming that we have receievd your request
|
||||
|
||||
%p
|
||||
Your form input is listed below. If you need to amend or correct, you may reply
|
||||
to this email.
|
||||
|
||||
%p
|
||||
You will hear from us in the next few days
|
||||
|
||||
%p
|
||||
Your friendly Feenix Bot
|
||||
|
||||
%h3 Data received
|
||||
|
||||
- @data.each do |name , value|
|
||||
%p
|
||||
= "#{name}: #{value}"
|
17
app/views/form_mailer/received.text.haml
Normal file
17
app/views/form_mailer/received.text.haml
Normal file
@ -0,0 +1,17 @@
|
||||
="Hello #{@data['name']}"
|
||||
|
||||
This is an automated message confirming that we have receievd your request
|
||||
|
||||
Your form input is listed below. If you need to amend or correct, you may reply
|
||||
to this email.
|
||||
|
||||
You will hear from us in the next few days
|
||||
|
||||
Your friendly Feenix Bot
|
||||
|
||||
|
||||
Data received
|
||||
-------------
|
||||
|
||||
- @data.each do |name , value|
|
||||
= "#{name}: #{value}"
|
Reference in New Issue
Block a user