I am working on e-mails for my rails app. Right now the only way I know to view the e-mail is to send it to myself. How do I get "daily_summary.html.haml", which is in the "notifications" folder under the "views" folder, to render in the browser? I was thinking I should just add the route:
match 'notifications' => 'notifications/daily_summary'
But then I don't know how to handle the controller/action side of things.