Displaying 2 results from an estimated 2 matches for "mailer_nam".
Did you mean:
mailer_name
2007 Dec 08
6
Rails 2.0 ActionMailer breaks my redmine render_message
..., :body =>
body)
ActionView::Base.new(File.join(template_root, ''mailer''), body,
self).render(:file => layout)
end
end
the last line is not accepted when running rails 2.0 => ERROR
ActionView::ActionViewError (Due to changes in ActionMailer, you need to
provide the mailer_name along with the template name.
render "user_mailer/signup"
render :file => "user_mailer/signup"
If you are rendering a subtemplate, you must now use controller-like
partial syntax:
render :partial => ''signup'' # no mailer_name necessary)
in debuggin...
2008 Mar 31
0
Action Mailer Problem with salted hash login generator
Hi! Guys
I am using the salted hash login generator for login purpose. Now, I
am working in friendship. When I want to request someone for
friendship request via the action mailer I get following error:
=====================================
Due to changes in ActionMailer, you need to provide the mailer_name
along with the template name.
render "user_mailer/signup"
render :file => "user_mailer/signup"
If you are rendering a subtemplate, you must now use controller-like
partial syntax:
render :partial => ''signup'' # no mailer_name necessary
==========...