python email smtplib 모듈 메 일 코드 인 스 턴 스 보 내기

1249 단어 pythonsmtplib
QQ 메 일 테스트 를 사용 하려 면 QQ 메 일의 smtp 프로 토 콜 을 열 고 인증 코드 를 받 아야 합 니 다.
코드 내용 은 다음 과 같 습 니 다.

#!/usr/bin/env python
# _*_ coding:utf-8 _*_
__author__ = 'junxi'

import smtplib
from email.mime.text import MIMEText

#     
# msg = MIMEText('send by python...', 'plain', 'utf-8')
# html   
msg = MIMEText('<html><body><h1>Hello</h1>' + '<p>send by <a href="http://www.xuegod-for.cn/yum" rel="external nofollow" >python</a></body></html>', 'html', 'utf-8')
msg['From'] = "[email protected]"
msg["To"] = "[email protected]"
msg["Subject"] = "python test"

server = smtplib.SMTP_SSL('smtp.qq.com', 465)
server.set_debuglevel(1)
# xxxxxxxxx   QQ        ,                   
server.login("[email protected]", "xxxxxxxxx")
server.sendmail("[email protected]",["[email protected]"],msg.as_string())
server.quit()
결과 보기:

좋은 웹페이지 즐겨찾기