aboutsummaryrefslogblamecommitdiffstats
path: root/actionmailer/lib/action_mailer/utils.rb
blob: 26d2e60aafc05a9f64f83134d9c5397181c7c039 (plain) (tree)
1
2
3
4
5
6
7




                                   

     
module ActionMailer
  module Utils #:nodoc:
    def normalize_new_lines(text)
      text.to_s.gsub(/\r\n?/, "\n")
    end
  end
end