-
[Python] Gmail 보내기Python/Python Programming 2018. 5. 18. 12:55
파이썬(Python)을 이용한 gmail 보내기
import smtplib gmail_user = '' gmail_password = '' mailfrom = gmail_user mailto = '' subject = 'Gmail Test' body = 'Python is Beautiful' email_text = """ %s %s """ % (subject, body) try: server = smtplib.SMTP_SSL('smtp.gmail.com', 465) server.ehlo() server.login(gmail_user, gmail_password) server.sendmail(mailfrom, mailto, email_text) server.close() print('Gmail sent') except: print('Gmail Fail')
'Python > Python Programming' 카테고리의 다른 글
[Python] Comparison of Datetime Type Using Python (0) 2018.06.15 [ Python ] shutil모듈의 rmtree 메소드를 이용한 하위 디렉토리와 파일 삭제 (0) 2018.05.22 [Python] 3.6+에서 사전자료형(Dict)은 입력순서를 보존 (0) 2018.05.19 [Python] strip, rstrip, lstrip - 공백과 문자 제거 함수 (0) 2018.05.19 [Python] 단축평가(short-circuit evalution) (0) 2018.05.15 [Python] ==(같다) 와 is (같다) 차이 (0) 2018.05.15 [Python] PEP - 스타일코드 공백(Whitespace) (0) 2018.05.14 [Python] 문자열 100개씩 잘라서 출력하기 (0) 2018.05.14