Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to test my registration process locally (development mode), how can I test how emails will be sent out and rendered etc?

I am not referring to a unit-test or integration test, but just while developing my app and going on the register page etc. I want it to send out the emails but to a file not using smtp.

Is this possible?

What options do I have?

share|improve this question

2 Answers

That is the default behaviour.

It is configurable in the config/environments/*.rb files. The statement

config.action_mailer.delivery_method = :file

makes it go to a file in the tmp/mails directory.

You can find more information here - especially section 6.

share|improve this answer
+1 wasn't aware of that option & could certainly use it myself. – Brian Mar 13 '11 at 0:16
4  
don't forget to restart your server after making config changes. ;) – Pope Poopinpants Aug 3 '11 at 19:08

LetterOpener makes it even simpler for you to preview the emails you just sent by opening the file in the browser automatically (in development environment of course).

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.