Send an Email using python, and send an email using python

Source: Internet
Author: User

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 ();

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.