Send an Email using python, and send an email using python
Import smtplibfrom email. mime. text import MIMETextdef SendEmail (): email = "" # Set the recipient address mailto_list = [email] mail_host = "" # Set the server mail_user = "" # username mail_pass = "" # password msg = "" # Email content msssageg = MIMEText (msg, _ subtype = 'html', _ charset = 'gb2312') # create an instance, here, we set the message in html format To msssageg ['subobject'] = "" # Set the Subject msssageg ['from'] = "" # Sending address msssageg ['to'] = "; ". join (mailto_list) try: s = smtplib. SMTP () s. connect (mail_host) # connect to the smtp server s. login (mail_user, mail_pass) # log on to the server s. sendmail (mail_user, mailto_list, msssageg. as_string () # Send email s. close () return True except t Exception, e: print str (e) return Falseif _ name _ = "_ main _": SendEmail ();