本文實例講述了python通過smtp發送郵件的方法。分享給大家供大家參考。具體實現方法如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
import smtplib, socket msg = open ( "multimsg.eml" , "r" ).read() try : server = smtplib.SMTP( '10.0.0.1' ) result = server.sendmail(fromaddr, toaddrs, msg) server.quit() if result: for r in result.keys(): print "Error sending to" , r rt = result[r] print "Code" , rt[ 0 ], ":" , rt[ 1 ] except (smtplib.SMTPException, socket.error), arg: print "SMTP Server could not send mail" , arg |
希望本文所述對大家的Python程序設計有所幫助。