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.

When sending emails (for example for 'Reset password instructions') using Devise, i need to know current domain URL, and set that value into mailer's template.

request.url doesn't work for me.

Assuming, this Rails application is accessibly from multiple URLs.

Any ideas?

share|improve this question

1 Answer

Request object is not available in the mailers. You will need to set up the host in the environment configuration file with something like:

ActionMailer::Base.default_url_options[:host] = 'myhost.com'

share|improve this answer
This Rails application is accessible from multiple URLs. This way i need a 'dynamic' URL – vsh Sep 5 '11 at 12:08
In that case you will have to manually get the domain name from the request, pass it to the mailer object as a parameter, and use it with the url helpers as detailed on guides.rubyonrails.org/… – eugen Sep 5 '11 at 12:28
As eugen said you will need to get the address from the request. Check the whole request object. Perhaps the information you are looking for is in request.env, and then pass it to the template. – kode Jan 18 at 13:34

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.