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
afbc8506
Kaydet (Commit)
afbc8506
authored
Nis 30, 2011
tarafından
R David Murray
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Sade Fark
Merge #11883: fix email examples by adding 'localhost' to SMTP constructor calls
üst
d3f075a4
361a7df3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
email-dir.py
Doc/includes/email-dir.py
+1
-1
email-mime.py
Doc/includes/email-mime.py
+1
-1
email-simple.py
Doc/includes/email-simple.py
+1
-1
No files found.
Doc/includes/email-dir.py
Dosyayı görüntüle @
afbc8506
...
...
@@ -105,7 +105,7 @@ must be running an SMTP server.
fp
.
write
(
composed
)
fp
.
close
()
else
:
s
=
smtplib
.
SMTP
()
s
=
smtplib
.
SMTP
(
'localhost'
)
s
.
sendmail
(
opts
.
sender
,
opts
.
recipients
,
composed
)
s
.
quit
()
...
...
Doc/includes/email-mime.py
Dosyayı görüntüle @
afbc8506
...
...
@@ -26,6 +26,6 @@ for file in pngfiles:
msg
.
attach
(
img
)
# Send the email via our own SMTP server.
s
=
smtplib
.
SMTP
()
s
=
smtplib
.
SMTP
(
'localhost'
)
s
.
send_message
(
msg
)
s
.
quit
()
Doc/includes/email-simple.py
Dosyayı görüntüle @
afbc8506
...
...
@@ -18,6 +18,6 @@ msg['From'] = me
msg
[
'To'
]
=
you
# Send the message via our own SMTP server.
s
=
smtplib
.
SMTP
()
s
=
smtplib
.
SMTP
(
'localhost'
)
s
.
send_message
(
msg
)
s
.
quit
()
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