Package email :: Package mime :: Module nonmultipart :: Class MIMENonMultipart
[hide private]
[frames] | no frames]

_ClassType MIMENonMultipart

message.Message --+    
                  |    
      base.MIMEBase --+
                      |
                     MIMENonMultipart
Known Subclasses:

Base class for MIME multipart/* type messages.

Instance Methods [hide private]
 
attach(self, payload)
Add the given payload to the current payload.

Inherited from base.MIMEBase: __init__

Inherited from message.Message: __contains__, __delitem__, __getitem__, __len__, __setitem__, __str__, add_header, as_string, del_param, get, get_all, get_boundary, get_charset, get_charsets, get_content_charset, get_content_maintype, get_content_subtype, get_content_type, get_default_type, get_filename, get_param, get_params, get_payload, get_unixfrom, has_key, is_multipart, items, keys, replace_header, set_boundary, set_charset, set_default_type, set_param, set_payload, set_type, set_unixfrom, values

Inherited from message.Message (private): _get_params_preserve

Imports: walk


Method Details [hide private]

attach(self, payload)

 

Add the given payload to the current payload.

The current payload will always be a list of objects after this method is called. If you want to set the payload to a scalar object, use set_payload() instead.

Overrides: message.Message.attach
(inherited documentation)