• Home
  • Raw
  • Download

Lines Matching full:email

1 :mod:`email.message`: Representing an email message
4 .. module:: email.message
5 :synopsis: The base class representing email messages.
8 The central class in the :mod:`email` package is the :class:`Message` class,
9 imported from the :mod:`email.message` module. It is the base class for the
10 :mod:`email` object model. :class:`Message` provides the core functionality for
51 :class:`~email.generator.Generator` instance and use its
52 :meth:`~email.generator.Generator.flatten` method directly. For example::
55 from email.generator import Generator
132 :class:`~email.charset.Charset` instance (see :mod:`email.charset`), a
134 be converted to a :class:`~email.charset.Charset` instance. If *charset*
148 :class:`~email.charset.Charset`, and a header with the appropriate value
166 Return the :class:`~email.charset.Charset` instance associated with the
409 :func:`email.utils.collapse_rfc2231_value`, passing in the return value
415 param = email.utils.collapse_rfc2231_value(rawparam)
482 :func:`email.utils.unquote`.
490 string will always be unquoted as per :func:`email.utils.unquote`.
497 necessary. A :exc:`~email.errors.HeaderParseError` is raised if the
515 :class:`~email.charset.Charset` instance for the default encoding of the message body.
571 documents. When the :class:`~email.parser.Parser` discovers some text
574 :class:`~email.generator.Generator` is writing out the plain text
577 between the headers and the first boundary. See :mod:`email.parser` and
578 :mod:`email.generator` for details.
592 :class:`~email.generator.Generator` to print a newline at the end of the
599 parsing this message. See :mod:`email.errors` for a detailed description