vote up 0 vote down star

I'm wondering if it's possible to configure a Rails email derived from ActionMailer to send to a different recipient based on the environment. For example, for development I'd like it to send mail to my personal email so I don't clog up our company email account with "Testing" emails; for production however I want it to use the real address.

How can I achieve this?

flag

59% accept rate

1 Answer

vote up 1 vote down check

By default the development environment isn't setup to actually send emails (it just logs them).

Setting up alternate accounts can be done in many different ways. You can either use some logic in your mailer like so...

recipients (Rails.env.production? ? "email@company.com" : "test@non-company.org")

Or you can define the recipient as a constant in the environment files like so:

/config/environment/production.rb

EMAIL_RECIPIENT = "email@company.com"

/config/environment/development.rb

EMAIL_RECIPIENT = "test@non-company.org"

and then use the constant in your mailer. example:

recipients EMAIL_RECIPIENT
link|flag
Great, that should do it. Thanks! – Wayne M Oct 6 at 16:36

Your Answer

Get an OpenID
or

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