This repository has been archived by the owner on Jun 3, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
mail.py
108 lines (91 loc) · 3.05 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from datetime import datetime, timedelta
import logging
import smtplib
from email.MIMEText import MIMEText
from email.utils import formatdate, parseaddr
from tornado.escape import utf8
from tornado.options import options
SMTP_USER = options.smtp_user
SMTP_PASSWORD = options.smtp_password
SMTP_HOST = options.smtp_host
SMTP_DURATION = int(options.smtp_duration)
_session = None
def send_mail(user, subject, body, **kwargs):
"""
class MailHandler(BaseHandler):
def post(self):
#do something
with tornado.stack_context.NullContext():
ioloop = tornado.ioloop.IOLoop.instance()
ioloop.add_callback(
self.async_callback(send_mail, user, subject, body, **kwargs)
)
# this will not block your current instance
#do something else
self.render(template)
"""
message = Message(user, subject, body, **kwargs)
msg = message.as_msg()
msg['From'] = SMTP_USER
fr = parseaddr(SMTP_USER)[1]
global _session
if _session is None:
_session = _SMTPSession(
SMTP_HOST, fr, SMTP_PASSWORD, SMTP_DURATION
)
_session.send_mail(fr, message.email, msg.as_string())
class Message(object):
def __init__(self, user, subject, body, **kwargs):
self.user = user # lepture <[email protected]>
self.name, self.email = parseaddr(user)
self.subject = subject
self.body = body
self.subtype = kwargs.pop('subtype', 'plain')
self.date = kwargs.pop('date', None)
def as_msg(self):
msg = MIMEText(utf8(self.body), self.subtype)
msg.set_charset('utf-8')
msg['To'] = utf8(self.email)
msg['Subject'] = utf8(self.subject)
if self.date:
msg['Date'] = self.date
else:
msg['Date'] = formatedate()
return msg
class _SMTPSession(object):
def __init__(self, host, user='', password='', duration=30, ssl=True):
self.host = host
self.user = user
self.password = password
self.duration = duration
self.ssl = ssl
self.renew()
def send_mail(self, fr, to, message):
if self.timeout:
self.renew()
try:
self.session.sendmail(fr, to, message)
except Exception, e:
err = "Send email from %s to %s failed!\n Exception: %s!" \
% (fr, to, e)
logging.error(err)
@property
def timeout(self):
if datetime.utcnow() < self.deadline:
return False
else:
return True
def renew(self):
try:
self.session.quit()
except Exception:
pass
if self.ssl:
self.session = smtplib.SMTP_SSL(self.host)
else:
self.session = smtplib.SMTP(self.host)
if self.user and self.password:
self.session.login(self.user, self.password)
self.deadline = datetime.utcnow() + timedelta(seconds=self.duration * 60)