Net::IMAP::BodyTypeMultipart
represents multipart body structures of messages.
Fields:
- media_type
-
Returns the content media type name as defined in [MIME-IMB].
- subtype
-
Returns the content subtype name as defined in [MIME-IMB].
- parts
-
Returns multiple parts.
- param
-
Returns a hash that represents parameters as defined in [MIME-IMB].
- disposition
-
Returns a Net::IMAP::ContentDisposition object giving the content disposition.
- language
-
Returns a string or an array of strings giving the body language value as defined in [LANGUAGE-TAGS].
- extension
-
Returns extension data.
- multipart?
-
Returns true.
Instance Methods
lib/net/imap.rb
View on GitHub
# File tmp/rubies/ruby-3.0.5/lib/net/imap.rb, line 2158
def media_subtype
warn("media_subtype is obsolete, use subtype instead.\n", uplevel: 1)
return subtype
end
Obsolete: use subtype
instead. Calling this will generate a warning message to stderr
, then return the value of subtype
.
lib/net/imap.rb
View on GitHub
# File tmp/rubies/ruby-3.0.5/lib/net/imap.rb, line 2151
def multipart?
return true
end
No documentation available