Python implementation QQ Mailbox send

Source: Internet
Author: User

Specific reference code:

#!/usr/bin/env python# encoding: utf-8import smtplibfrom email.mime.text import  mimetextclass myemail:    def __init__ (self, subject, body):         self.subject = subject         self.body = body        self.host =   ' smtp.qq.com '         self.port = 465         self.sender =  ' [email protected] '          self.pwd =  ' Password '         self.receiver  =  ' [email protected] '     def send_email (self):         msg = mimetext (self.body,  ' plain ',  ' utf-8 ')           msg[' subject '] = self.subject        msg[' from ']  = self.sender        msg[' to '] = self.receiver         s = smtplib. Smtp_ssl (Self.host, self.port)         s.login (self.sender,  SELF.PWD)         s.sendmail (self.sender, self.receiver,  Msg.as_string ()) if __name__ ==  ' __main__ ':     my_email = myemail ( ' This is a test mail ',  ' This is a test email, please do not reply, thank you '     my_email.send_email ()


This article from "Xu Big Tree" blog, declined reprint!

Python implementation QQ Mailbox send

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.