Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question

2 Answers

There's a gem called Letter Opener that sounds like it'll do exactly what you're looking for. It previews email messages in the browser rather than sending them. I haven't used it myself. If it works I'd love to hear about it, though!

https://github.com/ryanb/letter_opener

There's another one called Mail Viewer but it hasn't been actively developed in quite some time. Probably better to steer clear:

https://github.com/37signals/mail_view

share|improve this answer
Letter Opener seems to be working. Only thing is that it is opening the 'plain.html' versions of the e-mail instead of the 'rich.html' versions (the plain seems to correspond to the text version of my email and the rich to the html version). Any idea how I could change this? – John Feb 16 '12 at 13:58
It looks like, within the deliver block you can specify both a text_part block and an html_part block. And you have to set content_type to 'text/html' in the html_part block. See if that works. – Tom L Feb 16 '12 at 16:09
I'm a little ignorant here. . where do you see these blocks and where can I set the content_type? – John Feb 16 '12 at 16:41
Yeah, the docs are a bit sparse. Take a look at the rspec tests in the github repo: github.com/ryanb/letter_opener/blob/master/spec/letter_opener/…. The second test has an example of what you're trying to do, I think. – Tom L Feb 16 '12 at 17:22

I'd take a look at actionmailer_extensions. It makes ActionMailer write outgoing emails to the disk as .eml files. This might be enough for your purposes (just set up a script to watch the output directory for new files and open them in your preferred email client), or you could fork the gem and modify it directly (its source is dead simple) to write .html files and open them in your browser instead.

Hope that helps!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.