Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
78a44c54
Kaydet (Commit)
78a44c54
authored
Mar 19, 2010
tarafından
Sean Reifscheider
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Adding an example of reproducing the rfc822.Message() parsing.
üst
d9b7d48a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
0 deletions
+23
-0
email-headers.py
Doc/includes/email-headers.py
+17
-0
email-examples.rst
Doc/library/email-examples.rst
+6
-0
No files found.
Doc/includes/email-headers.py
0 → 100644
Dosyayı görüntüle @
78a44c54
# Import the email modules we'll need
from
email.parser
import
Parser
# If the e-mail headers are in a file, uncomment this line:
#headers = Parser().parse(messagefile)
# Or for parsing headers in a string, use:
headers
=
Parser
()
.
parsestr
(
'From: <user@example.com>
\n
'
'To: <someone_else@example.com>
\n
'
'Subject: Test message
\n
'
'
\n
'
'Body would go here
\n
'
)
# Now the header items can be accessed as a dictionary:
print
'To:
%
s'
%
headers
[
'to'
]
print
'From:
%
s'
%
headers
[
'from'
]
print
'Subject:
%
s'
%
headers
[
'subject'
]
Doc/library/email-examples.rst
Dosyayı görüntüle @
78a44c54
...
...
@@ -11,6 +11,12 @@ First, let's see how to create and send a simple text message:
.. literalinclude:: ../includes/email-simple.py
And parsing RFC822 headers can easily be done by the parse(filename) or
parsestr(message_as_string) methods of the Parser() class:
.. literalinclude:: ../includes/email-headers.py
Here's an example of how to send a MIME message containing a bunch of family
pictures that may be residing in a directory:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment