mirror of
https://github.com/python/cpython.git
synced 2025-10-04 06:06:44 +00:00
#26176: fix usage of Address constructor in email examples.
Patch by Nathan Harold.
This commit is contained in:
parent
537ad7ad9f
commit
7a139c50db
2 changed files with 4 additions and 4 deletions
|
@ -9,9 +9,9 @@ from email.utils import make_msgid
|
||||||
# Create the base text message.
|
# Create the base text message.
|
||||||
msg = EmailMessage()
|
msg = EmailMessage()
|
||||||
msg['Subject'] = "Ayons asperges pour le déjeuner"
|
msg['Subject'] = "Ayons asperges pour le déjeuner"
|
||||||
msg['From'] = Address("Pepé Le Pew", "pepe@example.com")
|
msg['From'] = Address("Pepé Le Pew", "pepe", "example.com")
|
||||||
msg['To'] = (Address("Penelope Pussycat", "penelope@example.com"),
|
msg['To'] = (Address("Penelope Pussycat", "penelope", "example.com"),
|
||||||
Address("Fabrette Pussycat", "fabrette@example.com"))
|
Address("Fabrette Pussycat", "fabrette", "example.com"))
|
||||||
msg.set_content("""\
|
msg.set_content("""\
|
||||||
Salut!
|
Salut!
|
||||||
|
|
||||||
|
|
|
@ -61,7 +61,7 @@ way we could process it:
|
||||||
|
|
||||||
Up to the prompt, the output from the above is::
|
Up to the prompt, the output from the above is::
|
||||||
|
|
||||||
To: Penelope Pussycat <"penelope@example.com">, Fabrette Pussycat <"fabrette@example.com">
|
To: Penelope Pussycat <penelope@example.com>, Fabrette Pussycat <fabrette@example.com>
|
||||||
From: Pepé Le Pew <pepe@example.com>
|
From: Pepé Le Pew <pepe@example.com>
|
||||||
Subject: Ayons asperges pour le déjeuner
|
Subject: Ayons asperges pour le déjeuner
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue