# email - pydoc - phpman

Help on package email:

## NAME
    email - A package for parsing, handling, and generating email messages.

## MODULE REFERENCE
    <https://docs.python.org/3.10/library/email.html>

    The following documentation is automatically generated from the Python
    source files.  It may be incomplete, incorrect or include features that
    are considered implementation detail and may vary between Python
    implementations.  When in doubt, consult the module reference at the
    location listed above.

## PACKAGE CONTENTS
    _encoded_words
    _header_value_parser
    _parseaddr
    _policybase
    base64mime
    charset
    contentmanager
    encoders
    errors
    feedparser
    generator
    header
    headerregistry
    iterators
    message
    mime (package)
    parser
    policy
    quoprimime
    utils

## FUNCTIONS
### message_from_binary_file
        Read a binary file and parse its contents into a Message object model.

        Optional _class and strict are passed to the Parser constructor.

### message_from_bytes
        Parse a bytes string into a Message object model.

        Optional _class and strict are passed to the Parser constructor.

### message_from_file
        Read a file and parse its contents into a Message object model.

        Optional _class and strict are passed to the Parser constructor.

### message_from_string
        Parse a string into a Message object model.

        Optional _class and strict are passed to the Parser constructor.

## DATA
    __all__ = ['base64mime', 'charset', 'encoders', 'errors', 'feedparser'...

## FILE
    /usr/lib/python3.10/email/__init__.py


