반응형
[출처] [python] smtplib 로 mail 보내기.|작성자 tius1234
한글이 섞여 있을 경우, 보내지지 않거나, 발송 후에 한글이 안보이거나 이상하게 표기 되는 경우 다음과 같은 옵션을 준다.
msg = MIMEText(message, _subtype='html', _charset='utf-8')
#!/usr/bin/env python
#-*- coding:utf-8 -*-
import smtplib
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
sender = "보내는사람@gmail.com"
toAddrList = ["받는사람1@gamil.com", "받는사람2@gmail.com"]
msg = MIMEMultipart('alternative')
# msg = MIMEText(text, _charset='utf8')
msg['Subject'] = "test email"
msg['From'] = sender
msg['To'] = ",".join(toAddrList)
text = "Hi!\nHow are you?\nHere is the link you wanted:\nhttp://www.python.org"
html = """\
<html>
<head></head>
<body>
<p>Hi!<br>
How Are You?<br>
</p>
</body>
</html>
"""
part1 = MIMEText(text, 'plain')
part2 = MIMEText(html, 'html')
msg.attach(part1)
msg.attach(part2)
ss = smtplib.SMTP('smtp.gmail.com', 587)
ss.set_debuglevel(1)
ss.ehlo()
ss.starttls()
ss.ehlo()
ss.login(sender, '비밀번호')
ss.sendmail(sender,toAddrList,msg.as_string())
ss.close()
|
cs |
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
#!/usr/bin/python
# -*- coding:utf-8 -*-
import smtplib
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
smtp_server = "smtp.works.naver.com"
port = 465
userid = "sender@mail.com"
passwd = "passwd"
# me == my email address
# you == recipient's email address
me = userid
you = "recver@mail.com"
# Create message container - the correct MIME type is multipart/alternative.
msg = MIMEMultipart('alternative')
msg['Subject'] = "Link"
msg['From'] = me
msg['To'] = you
# Create the body of the message (a plain-text and an HTML version).
html = """\
<html>
<head></head>
<body>
<p>Hi!<br>
How are you?<br>
</p>
</body>
</html>
"""
# Record the MIME types of both parts - text/plain and text/html.
html_body = MIMEText(html, 'html')
# Attach parts into message container.
# According to RFC 2046, the last part of a multipart message, in this case
# the HTML message, is best and preferred.
msg.attach(html_body)
# Send the message via local SMTP server.
s = smtplib.SMTP_SSL(smtp_server, port)
s.set_debuglevel(1)
s.ehlo()
s.login(userid, passwd)
# sendmail function takes 3 arguments: sender's address, recipient's address
# and message to send - here it is sent as one string.
s.sendmail(me, you, msg.as_string())
s.quit()
|
cs |
[출처] [python] smtplib 로 mail 보내기.|작성자 tius1234
반응형
'Python 활용' 카테고리의 다른 글
중급 파이썬: 파이썬 팁들 (0) | 2017.02.16 |
---|---|
유명 백신을 이용한 바이러스토탈 바이러스 검사 API 사이트 안내 (0) | 2017.01.22 |
제33 KOBIC 차세대 생명정보학 교육 워크샵 데이터 과학을 위한 파이썬 기초 (0) | 2016.11.15 |
파이썬 데이터와 비주얼화 예제 (깃허브) (0) | 2016.10.24 |
파이썬(python)을 이용한 간단한 파일 서버 명령 (0) | 2016.06.07 |