Ticket #1481: 1481_actionmailer_template_fix_for_quoted_printable.patch
| File 1481_actionmailer_template_fix_for_quoted_printable.patch, 0.7 kB (added by patrick@lenz.sh, 3 years ago) |
|---|
-
railties/lib/rails_generator/generators/components/mailer/templates/unit_test.rb
old new 5 5 FIXTURES_PATH = File.dirname(__FILE__) + '/../fixtures' 6 6 CHARSET = "utf-8" 7 7 8 include ActionMailer::Quoting 9 8 10 def setup 9 11 ActionMailer::Base.delivery_method = :test 10 12 ActionMailer::Base.perform_deliveries = true … … 30 32 end 31 33 32 34 def encode(subject) 33 ActionMailer::Base.quoted_printable(subject, CHARSET)35 quoted_printable(subject, CHARSET) 34 36 end 35 37 end