-
Notifications
You must be signed in to change notification settings - Fork 4
/
mail.py
51 lines (42 loc) · 1.7 KB
/
mail.py
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
import os
import smtplib
from contextlib import closing
from email.header import Header
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
from email.utils import formataddr
from config import mail_host as host, mail_username as username, mail_password as password
def loginToServer(host, user, password):
try:
server = smtplib.SMTP(host, 25)
server.login(user, password)
return server
except smtplib.SMTPException:
print("连接服务器失败")
return
def getmsg(text, att_urls):
msg = MIMEMultipart('mixed')
if text:
msg.attach(MIMEText(text, 'plain', 'gbk'))
if att_urls:
for att_url in att_urls:
if os.path.exists(att_url):
_, filename = os.path.split(att_url)
att = MIMEText(open(att_url, 'rb').read(), "base64", "gbk")
att["Content-Type"] = 'application/octet-stream'
att.add_header('Content-Disposition', 'attachment', filename=('gbk', '', filename))
msg.attach(att)
return msg
def send_mail(send_tos, name, subject, text, att_urls=None):
with closing(loginToServer(host, username, password)) as server:
if server:
msg = getmsg(text="你好:\n" + text, att_urls=att_urls)
msg['From'] = formataddr([name, username])
msg['Subject'] = Header(subject, "utf-8").encode()
server.sendmail(username, send_tos, msg.as_string())
else:
print("邮件发送失败")
return
if __name__ == "__main__":
# att_urls = ["************"]
send_mail(send_tos=["********@***.com"], name="SSSimon Yang", subject="***********", text="***********")