Package pyzmail :: Module parse :: Class PzMessage
[hide private]
[frames] | no frames]

Class PzMessage

source code

email.message.Message --+    
                        |    
               PyzMessage --+
                            |
                           PzMessage

Old name and interface for PyzMessage. Deprecated

Instance Methods [hide private]
 
__init__(self, input)
Initialize the object with data coming from input.
source code

Inherited from PyzMessage: get_address, get_addresses, get_decoded_header, get_subject

Inherited from email.message.Message: __contains__, __delitem__, __getitem__, __len__, __setitem__, __str__, add_header, as_string, attach, 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, walk

Inherited from email.message.Message (private): _get_params_preserve

Static Methods [hide private]

Inherited from PyzMessage: factory, smart_parser

Instance Variables [hide private]

Inherited from PyzMessage: html_part, mailparts, text_part

Method Details [hide private]

__init__(self, input)
(Constructor)

source code 

Initialize the object with data coming from input.

Parameters:
  • input (str or file or email.message.Message) - used as the raw content for the email, can be a string, a file object or an email.message.Message object.
Overrides: email.message.Message.__init__