aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/lib/action_mailer/tmail_compat.rb
blob: cacd79be2754f898daee3e496fad5ed3c7d3ff58 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
module Mail
  class Message
    
    def set_content_type(*args)
      STDERR.puts("Message#set_content_type is deprecated, please just call Message#content_type with the same arguments.\n#{caller}")
      content_type(*args)
    end
    
  end
end