Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

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  
    55  FIXTURES_PATH = File.dirname(__FILE__) + '/../fixtures' 
    66  CHARSET = "utf-8" 
    77 
     8  include ActionMailer::Quoting 
     9 
    810  def setup 
    911    ActionMailer::Base.delivery_method = :test 
    1012    ActionMailer::Base.perform_deliveries = true 
     
    3032    end 
    3133 
    3234    def encode(subject) 
    33       ActionMailer::Base.quoted_printable(subject, CHARSET) 
     35      quoted_printable(subject, CHARSET) 
    3436    end 
    3537end