Hiya I am having loads of trouble adding layouts to my emails in rails 2.2. I created a layout app/views/layouts/notifier.html.erb and this layout was used for all my emails regardless of content type. All was well. But I want to create a different layout for the different content types (text/html, text/plain) In which case I made app/views/layout/notifier.text.html.erb and app/ views/layouts/notifier.text.plain.erb as described here http://guides.rubyonrails.org/action_mailer_basics.html#action-mailer-layouts class Notifier < ActionMailer::Base layout ''notifier'' def reminder ... content_type ''text/html'' ... end end Now it won''t render either layout. I get the error ActionView::MissingTemplate (Missing layout layouts/notifier.erb in view path /home/rails/test/app/views:): /opt/csw/lib/ruby/gems/1.8/gems/actionpack-2.2.2/lib/action_view/ template.rb:95:in `find_full_path'' Has anyone got any ideas?? I''d be very grateful --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---