Tagged Questions
0
votes
0answers
85 views
How do I set custom Rails 3 url helpers that work in ActionMailer?
I think what I'm trying to do is customize the URL helpers, but I might be going about this from the wrong end. If so, let me know so I can edit the question to make more sense.
I have a Rails 3.2.11 ...
1
vote
0answers
258 views
Named route in mailer template raises missing :host option even though default host is configured
Using named routes in any of my application's mailers is raising this error:
ArgumentError: Missing host to link to! Please provide the :host parameter, set default_url_options[:host], or set ...
0
votes
3answers
256 views
ActionMailer doesn't recognise route
I have a route called "settings_redirect", which I've defined as follows:
routes.rb
match "/settings/redirect" => "settings#redirect", :via => "get"
I want to link to this route in an email ...
0
votes
3answers
270 views
Ruby on Rails: Send email from show page
I am a Rails noob and have a problem sending an email from a show page. There are several contact form tutorials out there but I cannot find one where I send an email from a page like a 'show' page. I ...
0
votes
1answer
453 views
Rails : No route matches , creating contact us form
I am making a contact us form that doens't have any model. I just want it to be a popup in the home page when people click on contact us.
In the partial we load _contact.html.haml , this is what we ...
2
votes
0answers
135 views
Share resources between layouts in Rails 3
OK, so Ive set up my mailer in Rails which works fine, but I wanted to make a new action (or maybe just a view?) to have a slimmed down contact form in a lightbox. I can do that all fine and dandy but ...
2
votes
2answers
2k views
Problem with url_for and named routes in ActionMailer View: “Need controller and action”
I'm attempting to provide a confirmation link in my user welcome email and I'm getting the following Rails error:
Need controller and action!
It makes a fuss about this line:
<p>Please take ...