Rails - setting multiple layouts for a multipart email with mailer templates - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T02:41:09Z http://stackoverflow.com/feeds/question/364162 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/364162/rails-setting-multiple-layouts-for-a-multipart-email-with-mailer-templates 1 Rails - setting multiple layouts for a multipart email with mailer templates Cameron Booth 2008-12-12T21:13:21Z 2009-05-15T02:35:26Z <p>Hi there,</p> <p>So Rails 2.2 added mailer layouts, which is great, except that I can't figure out how to make them work when I'm sending a multipart email..it's wrapping my mail content with the same layout for both the text/plain version and the text/html version. What I want is to wrap my layout around either only the text/html version, or to be able to have a separate layout for each.</p> <p>Anybody encountered this? I haven't seen any mention of it elsewhere,</p> <p>Cameron</p> http://stackoverflow.com/questions/364162/rails-setting-multiple-layouts-for-a-multipart-email-with-mailer-templates/365377#365377 0 Answer by for Rails - setting multiple layouts for a multipart email with mailer templates 2008-12-13T16:15:59Z 2008-12-13T16:15:59Z <p>+1</p> <p>same problem no inf found - Itkin -</p> http://stackoverflow.com/questions/364162/rails-setting-multiple-layouts-for-a-multipart-email-with-mailer-templates/388640#388640 2 Answer by Surendra Singhi for Rails - setting multiple layouts for a multipart email with mailer templates Surendra Singhi 2008-12-23T11:06:04Z 2008-12-23T11:06:04Z <p>See <a href="http://blog.kreeti.com/rails/multipart-emails-with-mailer-templates" rel="nofollow">http://blog.kreeti.com/rails/multipart-emails-with-mailer-templates</a></p> http://stackoverflow.com/questions/364162/rails-setting-multiple-layouts-for-a-multipart-email-with-mailer-templates/866763#866763 1 Answer by paulthenerd for Rails - setting multiple layouts for a multipart email with mailer templates paulthenerd 2009-05-15T02:35:26Z 2009-05-15T02:35:26Z <p>For future reference the solution in the blog post above amended in a second blog post is given below all credit to the above mentioned blog post. <a href="http://blog.kreeti.com/rails/multipart-emails-with-mailer-templates" rel="nofollow">Solution blog post</a></p> <p>Add this code to your environment.rb file to stop the mailer from applying layouts to plain text emails. It also has a check that will stop it from conflicting with the exception notification plugin.</p> <pre><code># Do not use the mailer layout template for plain text emails module ActionMailer class Base private def candidate_for_layout?(options) (!options[:file] || !options[:file].respond_to?(:content_type) || options[:file].content_type != 'text/plain') &amp;&amp; !@template.send(:_exempt_from_layout?, default_template_name) end end end </code></pre>