Related to my previous question I still have one thing that I would like to understand - why this:
= link_to(root_path)
= link_to(@some_path_set_in_mailer)
works in development mode (config.action_mailer.perform_deliveries was set to true and emails were actually sent) and in production or staging has to be changed to:
= link_to(@some_path_set_in_mailer, @some_path_set_in_mailer)
to avoid "No route matches {}" error?
I had this problem in rails 3.2.
I'm not entirely sure why there is a difference since there shouldn't be.
However,
link_to
typically has this format:The only time you typically leave off the link description text is if you have a longer description that you need to put within a
do
block like this:So I would recommend sticking to the preferred syntaxes above.
The docs for
link_to
don't really talk about the short-hand method you're using too much.Here is the source for it: