Python 에서 SMTP 메 일 을 보 내 는 간단 한 튜 토리 얼

모듈
Python 은 SMTP 를 사용 하여 메 일 을 보 내 는 두 모듈:smtplib 모듈,email 모듈.
smtplib:메 일 발송 담당이메일:메 일 구축 담당
2.SMTP 포트
1)암호 화 되 지 않 은 포트,smtplib.SMTP 인터페이스,포트:25
2)SSL 암호 화 사용,smtplib.SMTPSSL 인터페이스,포트:465
3)TLS 암호 화 사용,포트:587 
3,4 단계
1.메 일 내용 구성

#    
msg = MIMEText(content)
 
#   
msg = MIMEMultipart()
2.메 일 서버 연결

s = smtplib.SMTP("smtp.qq.com", 25)
3.메 일 서버 에 로그 인

s.login(msg_from, passwd) 
msg_발신 자의 메 일 박스
passwd:발송 자의 비밀 번 호 를 말 합 니 다.이 비밀 번 호 는 QQ 로그 인 비밀번호 가 아니 라 QQ 메 일 설정 에서 SMTP 를 연 후의 인증 코드 입 니 다.

4.메 일 발송

s.sendmail(msg_from, msg_to, msg.as_string())
msg_발신 자
msg_받 는 쪽
msg.as_string():보 낼 메시지
4.자주 사용 하 는 장면
1.일반 텍스트 메 일

import smtplib
from email.mime.text import MIMEText
from email.header import Header
 
 
#    
msg_from = "[email protected]"
 
#        QQ     ,        SMTP        
passwd = "xxxxx"
 
#    
msg_to = "[email protected]"
 
#     
content = 'Python       ...'
 
#     
subject = "test"
 
#     MIMEText  (        )
msg = MIMEText(content)
 
#       
msg['Subject'] = Header(subject, 'utf-8')
 
#      
msg['From'] = msg_from
 
try:
    #        
    s = smtplib.SMTP("smtp.qq.com", 25)
 
    #      
    s.login(msg_from, passwd)
 
    #     :   ,   ,      
    s.sendmail(msg_from, msg_to, msg.as_string())
    print('  ')
except s.SMTPException as e:
    print(e)
finally:
    s.quit()
2.html 텍스트 보 내기

import smtplib
from email.mime.text import MIMEText
from email.header import Header
 
 
#    
msg_from = "[email protected]"
 
#        QQ     ,        SMTP        
passwd = "xxxx"
 
#    
msg_to = "[email protected]"
 
#     
content = """
<p>Python       ...</p>
<p><a href="http://www.baidu.com" rel="external nofollow" >      </a></p>
"""
 
#     
subject = "test"
 
#     MIMEText  (
msg = MIMEText(content, 'html', 'utf-8')
 
#       
msg['Subject'] = Header(subject, 'utf-8')
 
#      
msg['From'] = msg_from
 
try:
    #        
    s = smtplib.SMTP("smtp.qq.com", 25)
 
    #      
    s.login(msg_from, passwd)
 
    #     :   ,   ,      
    s.sendmail(msg_from, msg_to, msg.as_string())
    print('  ')
except s.SMTPException as e:
    print(e)
finally:
    s.quit()
3.첨부 파일 발송

import smtplib
from email.mime.text import MIMEText
from email.mime.multipart import MIMEMultipart
from email.header import Header
 
 
#    
msg_from = "[email protected]"
 
#        QQ     ,        SMTP        
passwd = "xxxx"
 
#    
msg_to = "[email protected]"
 
#     
subject = "test"
 
#     MIMEMultipart  (
msg = message = MIMEMultipart()
 
#     
message.attach(MIMEText('      Python       ……', 'plain', 'utf-8'))
 
#       
msg['Subject'] = Header(subject, 'utf-8')
 
#      
msg['From'] = msg_from
 
#     
att1 = MIMEText(open('./wordcloud_singer.py', 'rb').read(), 'base64', 'utf-8')
att1["Content-Type"] = 'application/octet-stream'
att1["Content-Disposition"] = 'attachment; filename="test.txt"'
msg.attach(att1)
 
try:
    #        
    s = smtplib.SMTP("smtp.qq.com", 25)
 
    #      
    s.login(msg_from, passwd)
 
    #     :   ,   ,      
    s.sendmail(msg_from, msg_to, msg.as_string())
    print('  ')
except s.SMTPException as e:
    print(e)
finally:
    s.quit()
이상 은 Python 이 SMTP 메 일 을 보 내 는 간단 한 튜 토리 얼 의 상세 한 내용 입 니 다.Python 이 메 일 을 보 내 는 자료 에 대해 서 는 다른 관련 글 을 주목 하 세 요!

좋은 웹페이지 즐겨찾기