-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #71 from ministryofjustice/feedback-update
Implemented feedback mail
- Loading branch information
Showing
3 changed files
with
5 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
h2 Your feedback | ||
|
||
div We welcome all feedback. Your comments will help us improve the service. | ||
div If you have an urgent question or something isn’t working, please email #{mail_to Settings.mail_tech_support} | ||
div If you have an urgent question or something isn’t working, please email #{mail_to Settings.mail_feedback} | ||
== render 'form' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
mail_from: [email protected] | ||
mail_reply_to: [email protected] | ||
mail_tech_support: [email protected] | ||
mail_feedback: [email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,4 +17,7 @@ def mail_tech_support | |
@h['mail_tech_support'] | ||
end | ||
|
||
def mail_feedback | ||
@h['mail_feedback'] | ||
end | ||
end |