instance method
content_type
Ruby on Rails 2.2.3
Since v2.2.3 Last seen in v2.3.18Available in: v2.2.3 v2.3.18
Signature
content_type( default = nil )
Returns the current “Content-Type” of the mail instance.
If the content_type field does not exist, returns nil by default or you can pass in as the parameter for what you want the default value to be.
Example:
mail = TMail::Mail.new mail.content_type #=> nil mail.content_type([]) #=> [] mail = TMail::Mail.load("../test/fixtures/raw_email") mail.content_type #=> "text/plain"
Parameters
-
defaultopt = nil
Source
# File actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/interface.rb, line 725
def content_type( default = nil )
if h = @header['content-type']
h.content_type || default
else
default
end
end
Defined in actionmailer/lib/action_mailer/vendor/tmail-1.2.3/tmail/interface.rb line 725
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in TMail::Mail