aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/lib/action_mailer
diff options
context:
space:
mode:
Diffstat (limited to 'actionmailer/lib/action_mailer')
-rw-r--r--actionmailer/lib/action_mailer/tmail_compat.rb8
1 files changed, 7 insertions, 1 deletions
diff --git a/actionmailer/lib/action_mailer/tmail_compat.rb b/actionmailer/lib/action_mailer/tmail_compat.rb
index c6efdc53b6..26962f972f 100644
--- a/actionmailer/lib/action_mailer/tmail_compat.rb
+++ b/actionmailer/lib/action_mailer/tmail_compat.rb
@@ -17,7 +17,13 @@ module Mail
old_transfer_encoding
end
end
-
+
+ def transfer_encoding=(value)
+ ActiveSupport::Deprecation.warn('Message#transfer_encoding= is deprecated, please call ' <<
+ 'Message#content_transfer_encoding= with the same arguments', caller[0,2])
+ self.content_transfer_encoding = value
+ end
+
def original_filename
ActiveSupport::Deprecation.warn('Message#original_filename is deprecated, ' <<
'please call Message#filename', caller[0,2])