This article mainly introduces python's method of sending mails through smpt. it involves Python's techniques for sending mails, which is very simple and practical, for more information about how to send emails through smpt, see the example in this article. Share it with you for your reference. The specific implementation method is as follows:
Import smtplib, socketfromaddr = a@ B .comtoaddrs = ["c@d.com", "e@f.com"] 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] handle T (smtplib. SMTPException, socket. error), arg: print "SMTP Server cocould not send mail", arg
I hope this article will help you with Python programming.