Lines Matching full:email
1 :mod:`email.header`: Internationalized headers
4 .. module:: email.header
8 :rfc:`2822` is the base standard that describes the format of email messages.
10 a time when most email was composed of ASCII characters only. :rfc:`2822` is a
11 specification written assuming email contains only 7-bit ASCII characters.
13 Of course, as email has been deployed worldwide, it has become
15 email messages. The base standard still requires email messages to be
17 written describing how to encode email containing non-ASCII characters into
19 :rfc:`2047`, and :rfc:`2231`. The :mod:`email` package supports these standards
20 in its :mod:`email.header` and :mod:`email.charset` modules.
22 If you want to include non-ASCII characters in your email headers, say in the
24 :class:`Header` class and assign the field in the :class:`~email.message.Message`
26 value. Import the :class:`Header` class from the :mod:`email.header` module.
29 >>> from email.message import Message
30 >>> from email.header import Header
42 :class:`~email.message.Message` instance was flattened, the :mailheader:`Subject`
87 Optional *charset*, if given, should be a :class:`~email.charset.Charset`
88 instance (see :mod:`email.charset`) or the name of a character set, which
89 will be converted to a :class:`~email.charset.Charset` instance. A value
143 The :mod:`email.header` module also provides the following convenient functions.
158 >>> from email.header import decode_header