blob: f606f9bb3b52585d54dfe7d2554cd440c33d4cd3 [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001:mod:`email`: Examples
2----------------------
3
4Here are a few examples of how to use the :mod:`email` package to read, write,
5and send simple email messages, as well as more complex MIME messages.
6
7First, let's see how to create and send a simple text message:
8
9.. literalinclude:: ../includes/email-simple.py
10
11
12Here's an example of how to send a MIME message containing a bunch of family
13pictures that may be residing in a directory:
14
15.. literalinclude:: ../includes/email-mime.py
16
17
18Here's an example of how to send the entire contents of a directory as an email
Christian Heimes292d3512008-02-03 16:51:08 +000019message: [1]_
Georg Brandl116aa622007-08-15 14:28:22 +000020
21.. literalinclude:: ../includes/email-dir.py
22
23
Christian Heimes292d3512008-02-03 16:51:08 +000024Here's an example of how to unpack a MIME message like the one
Georg Brandl116aa622007-08-15 14:28:22 +000025above, into a directory of files:
26
27.. literalinclude:: ../includes/email-unpack.py
28
Christian Heimes292d3512008-02-03 16:51:08 +000029Here's an example of how to create an HTML message with an alternative plain
30text version: [2]_
31
32.. literalinclude:: ../includes/email-alternative.py
33
Georg Brandl116aa622007-08-15 14:28:22 +000034
35.. rubric:: Footnotes
36
37.. [1] Thanks to Matthew Dixon Cowles for the original inspiration and examples.
Christian Heimes292d3512008-02-03 16:51:08 +000038.. [2] Contributed by Martin Matejek.