Class: Mail::Message

Inherits:
Object show all
Defined in:
actionmailer/lib/action_mailer/tmail_compat.rb

Instance Method Summary (collapse)

Instance Method Details

- (Object) original_filename



27
28
29
30
31
# File 'actionmailer/lib/action_mailer/tmail_compat.rb', line 27

def original_filename
  ActiveSupport::Deprecation.warn('Message#original_filename is deprecated, ' <<
                                  'please call Message#filename', caller[0,2])
  filename
end

- (Object) set_content_type(*args)



4
5
6
7
8
# File 'actionmailer/lib/action_mailer/tmail_compat.rb', line 4

def set_content_type(*args)
  ActiveSupport::Deprecation.warn('Message#set_content_type is deprecated, please just call ' <<
                                  'Message#content_type with the same arguments', caller[0,2])
  content_type(*args)
end

- (Object) transfer_encoding(value = nil) Also known as: old_transfer_encoding



11
12
13
14
15
16
17
18
19
# File 'actionmailer/lib/action_mailer/tmail_compat.rb', line 11

def transfer_encoding(value = nil)
  if value
    ActiveSupport::Deprecation.warn('Message#transfer_encoding is deprecated, please call ' <<
                                    'Message#content_transfer_encoding with the same arguments', caller[0,2])
    content_transfer_encoding(value)
  else
    old_transfer_encoding
  end
end

- (Object) transfer_encoding=(value)



21
22
23
24
25
# File 'actionmailer/lib/action_mailer/tmail_compat.rb', line 21

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