Python 이 QQ 메 일 로 메 일 을 보 내 는 실현 방법(공유)

잔말 말고 코드 를 바로 달 아 라.
Python2.7

#!/usr/bin/env python2.7
# -*- coding=utf-8 -*-

import smtplib
from email.mime.text import MIMEText
_user = "[email protected]"
_pwd = "         "
_to  = "[email protected]"

msg = MIMEText("this is a email from python,ha ha ha ...")
msg["Subject"] = "     "
msg["From"] = _user
msg["To"] = _to

try:
  s = smtplib.SMTP_SSL("smtp.qq.com", 465)
  s.login(_user, _pwd)
  s.sendmail(_user, _to, msg.as_string())
  s.quit()
  print "    "
except s.smtplib.SMTPException, e:
  print "    "
Python3.6

#!/usr/bin/env python3.6
# -*- coding=utf-8 -*-

import smtplib
from email.mime.text import MIMEText
_user = "[email protected]"
_pwd = "         "
_to  = "[email protected]"

msg = MIMEText("this is a email from python,ha ha ha ...")
msg["Subject"] = "     "
msg["From"] = _user
msg["To"] = _to

try:
  s = smtplib.SMTP_SSL("smtp.qq.com", 465)
  s.login(_user, _pwd)
  s.sendmail(_user, _to, msg.as_string())
  s.quit()
  print ("    ")
except (s.smtplib.SMTPException, e):
  print ("    ")
이 파 이 썬 이 QQ 메 일 을 이용 하여 메 일 을 보 내 는 실현 방법(공유)은 바로 편집장 이 여러분 에 게 공유 하 는 모든 내용 입 니 다.여러분 께 참고 가 되 고 많은 응원 부 탁 드 리 겠 습 니 다.

좋은 웹페이지 즐겨찾기