环境:

  • python2.7版本 + Linux下。
  • 需要注意密码来自后台的授权,生成的随机字符串,不是个人密码。
  1. #!/usr/bin/python
  2. # -*- coding: UTF-8 -*-
  3. import smtplib
  4. from email.mime.text import MIMEText
  5. from email.header import Header
  6. sender = '{你的}@sohu.com'
  7. receivers = ['{你的}@sohu.com'] # 接收邮件,可设置为你的QQ邮箱或者其他邮箱
  8. passwd='{你的}' #填入发送方邮箱的授权码
  9. #msg_to='xxxxx@foxmail.com'
  10. # 三个参数:第一个为文本内容,第二个 plain 设置文本格式,第三个 utf-8 设置编码
  11. message = MIMEText('Python 邮件发送测试...', 'plain', 'utf-8')
  12. message['From'] = Header("{你的}@sohu.com", 'utf-8') # 发送者
  13. message['To'] = Header("{你的}@sohu.com", 'utf-8') # 接收者
  14. subject = 'Python SMTP 邮件测试'
  15. message['Subject'] = Header(subject, 'utf-8')
  16. #if 1==1:
  17. try:
  18. #smtpObj = smtplib.SMTP_SSL('smtp.qq.com',465)
  19. smtpObj = smtplib.SMTP_SSL('smtp.sohu.com',465)
  20. smtpObj.login(sender,passwd)
  21. smtpObj.sendmail(sender, receivers, message.as_string())
  22. print "邮件发送成功"
  23. #else:
  24. except smtplib.SMTPException:
  25. print "Error: 无法发送邮件"