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 using Ruby on Rails 3.1.0 and I would like to properly generate URLs in HTML email messages. In my environment file I set

config.action_mailer.default_url_options = { :host => 'my_site.org' }

In the email view file (.html.erb) I state

<%= link_to @user.name, users_url(@user) %>

When I go to see the received email the generated URL is http://users/1, of course no correct. So, how can I generate correct URLs in mailer templates so to have http://my_site.org/users/1 links in body messages?


I also tryed to set the default_url_options in my mailer.rb file

class MyCustom::Mailer < ActionMailer::Base
  default_url_options[:host] = 'my_site.org'

  def test_sending
    ...
  end
end

but it doesn't work.

share|improve this question

3 Answers

up vote 0 down vote accepted

users_path is the relative path (/users/1). For an email, you want the absolute path, so use users_url(@user), which will give http://myapp.com/users/1 instead.

share|improve this answer
I was just correcting myself! Thanks anyway. – user502052 Jan 12 '12 at 17:19

your action_mailer setting is correct.

But you should be using _url and not _path for the link_to,

<%= link_to @user.name, users_url(@user) %>
share|improve this answer
You have right, but to be fair will choose I will accept the first answer. Thank you anyway. – user502052 Jan 12 '12 at 17:25

See that you set the config option. To be sure it uses the absolute path use:

<%= link_to, "My Profile", users_url(:only_path => false, @user) %>

OR set the host specifically in the link:

<%= link_to, "My Profile", users_url(:host => "example.com", @user) %>

It is explained here:

ActionView Helpers

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.