ToDo:
立秋らしい。暑いなぁ。
from smtplib import SMTP s= SMTP(mail_host,port) s.starttls() s.login(user,password) s.sendmail(from_addr,to_addr,msg.as_string())
from smtplib import SMTP
s= SMTP(mail_host,port)
s.starttls()
s.login(user,password)
s.sendmail(from_addr,to_addr,msg.as_string())
login前にstarttls()の発行を忘れないこと。
C#のusingと同じ感じで使える。これあると便利なんですよねぇ。
with open('foo.txt','r') as f: f.read()
with open('foo.txt','r') as f:
f.read()
with句を抜けるときに__exit__がコールされてリソース開放をやってくれるみたい。
2.6では、SMTPのobjectは対応してないみたいだ。
上巻読了。面白かったと思います。下巻を読むのが楽しみです。フォーサイスの初期に刊行された作品は面白いと思います。