기다림과 눈물 by 바보
홈
태그
방명록
관리자
새글쓰기
Notice
Notice
Category
Category
분류 전체보기
(88)
C++ STL
(1)
영혼을 담은 코딩
(2)
프로그래밍
(69)
C++
(9)
python
(1)
Android
(10)
JavaScript
(2)
node.js
(0)
TrueType Font
(3)
tips
(3)
음악/미술/문학
(1)
알고리즘
(15)
Recent Posts
Recent Posts
Recent Comments
Recent Comments
Recent Trackbacks
Recent Trackbacks
«
2025/01
»
일
월
화
수
목
금
토
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Links
Links
무비스트.
Swim, Plastic Model,….
꼬마늑대의 골방.
긍정적사고.
VRLab 팀 블로그.
Total :
Today :
'프로그래밍/python'에 해당되는 글 1건
2013.03.19
python gmail 계정으로 메일 보내기 예제
python gmail 계정으로 메일 보내기 예제
프로그래밍/python
2013. 3. 19. 10:26 |
python gmail 계정으로 메일 보내기 예제
import smtplib from email.mime.multipart import MIMEMultipart from email.mime.text import MIMEText def send_via_gmail(to, title, description): """ send e-mail via a gmail server param to: list of e-mail addresses param title: subject of a mail param description: content of a mail """ from_address = MAIL_ACCOUNT msg = get_message_formatted(from_address, to, title, descriotion) try: s = smtplib.SMTP('smtp.gmail.com:587') # port 465 or 587 s.starttls() s.login(MAIL_ACCOUNT, MAIL_PASSWORD) s.sendmail(from_address, to, msg.as_string()) s.quit() except: print "error: failed to send a mail" def get_message_formatted(from_address, to, title, description): msg = MIMEMultipart('localhost') msg['Subject'] = title msg['From'] = from_address msg['To'] = ', '.join(to) content = MIMEText(description, 'plain', _charset="utf-8") msg.attach(content) return msg
공유하기
게시글 관리
기다림과 눈물
:
PREV
1
NEXT
티스토리툴바