Rails3: mail: rename app/views/layouts/mailer.text.plain.erb to app/views/layouts/mailer.text.erb (#6317)

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@7534 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Toshi MARUYAMA 2011-09-26 16:20:57 +00:00
parent 9c650540ba
commit c534c9e984
2 changed files with 2 additions and 2 deletions

View File

@ -422,12 +422,12 @@ class Mailer < ActionMailer::Base
content_type "text/plain"
body render(:file => "#{method_name}.text.plain.rhtml",
:body => body,
:layout => 'mailer.text.plain.erb')
:layout => 'mailer.text.erb')
else
content_type "multipart/alternative"
part :content_type => "text/plain",
:body => render(:file => "#{method_name}.text.plain.rhtml",
:body => body, :layout => 'mailer.text.plain.erb')
:body => body, :layout => 'mailer.text.erb')
part :content_type => "text/html",
:body => render_message("#{method_name}.text.html.rhtml", body)
end