Skip to content

Commit

Permalink
Merge pull request #71 from ministryofjustice/feedback-update
Browse files Browse the repository at this point in the history
Implemented feedback mail
  • Loading branch information
colinbruce committed May 7, 2015
2 parents f206fd1 + d13a410 commit bbe6386
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app/views/feedback/new.html.slim
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'
1 change: 1 addition & 0 deletions config/settings.yml
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]
3 changes: 3 additions & 0 deletions lib/settings.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,7 @@ def mail_tech_support
@h['mail_tech_support']
end

def mail_feedback
@h['mail_feedback']
end
end

0 comments on commit bbe6386

Please sign in to comment.