Python 에서 SMTP 메 일 을 보 내 는 간단 한 튜 토리 얼
4660 단어 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 이 메 일 을 보 내 는 자료 에 대해 서 는 다른 관련 글 을 주목 하 세 요!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
로마 숫자를 정수로 또는 그 반대로 변환그 중 하나는 로마 숫자를 정수로 변환하는 함수를 만드는 것이었고 두 번째는 그 반대를 수행하는 함수를 만드는 것이었습니다. 문자만 포함합니다'I', 'V', 'X', 'L', 'C', 'D', 'M' ; 문자열이 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.