-
참고
Python예제: http://infos.tistory.com/1982
https://docs.python.org/3/library/email.examples.html
# -*- coding:utf-8 -*-
import smtplib
from email.mime.text import MIMEText # or email.mime.multipart.MIMEMultipart import MIMEText
msg = MIMEText('본문 테스트')
msg['Subject'] = '제목 테스트'
msg['To'] = 'toid@gmail.com'
smtp = smtplib.SMTP('smtp.live.com', 587) # or smtp.gmail.com, 587
smtp.ehlo() # Smtp protocal 가장 먼저 서버에 Hello 메시지를 보냄.
smtp.starttls() # TLS 사용시 필요, SSL인 경우에는 삭제.
smtp.login('yourid@live.com', 'password')
smtp.sendmail('yourid@live.com', 'toid@gmail.com', msg.as_string()) # 수신자 리스트 가능. [a@a, b@b...]
smtp.quit()
'Python' 카테고리의 다른 글
Python예제 - ctypes 데이터형 (0) 2019.03.05 Python예제 - ctypes 기초 (0) 2019.03.05 Python예제 - 콘솔창 타이틀 이름 변경, 얻기 (0) 2019.03.05 Python예제 목록 (0) 2018.12.10 Python예제 - soup.prettify() (0) 2018.02.04 Python예제 - soup.find, soup.find_all (0) 2018.02.04 Python예제 - soup 기본 개념 (0) 2018.02.03 Python예제 - soup.extract() (0) 2018.02.03