forked from hacktoolkit/django-htk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mailers.py
214 lines (181 loc) · 5.9 KB
/
mailers.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
# Python Standard Library Imports
import os
from email.mime.image import MIMEImage
# Django Imports
from django.conf import settings
from django.core.mail import (
EmailMultiAlternatives,
send_mail,
)
from django.template import TemplateDoesNotExist
from django.template.loader import get_template
# HTK Imports
from htk.constants.defaults import *
from htk.utils import htk_setting
from htk.utils.general import resolve_method_dynamically
from htk.utils.request import get_current_request
from htk.utils.text.converters import html2markdown
# isort: off
def simple_email(
subject='',
message='',
sender=None,
to=None,
fail_silently=False
):
"""Sends a simple email
"""
sender = sender or htk_setting('HTK_DEFAULT_EMAIL_SENDER', HTK_DEFAULT_EMAIL_SENDER)
to = to or htk_setting('HTK_DEFAULT_EMAIL_RECIPIENTS', HTK_DEFAULT_EMAIL_RECIPIENTS)
if settings.ENV_DEV:
fail_silently = True
subject = '[%s-dev] %s' % (htk_setting('HTK_SYMBOLIC_SITE_NAME'), subject,)
send_mail(subject, message, sender, to, fail_silently=fail_silently)
def email_context_generator():
"""Default HTK email context generator
Returns a dictionary with values for inflating templated emails
"""
request = get_current_request()
protocol = 'http'
if request:
if request.is_secure():
protocol = 'https'
else:
pass
domain = request.get_host() or htk_setting('HTK_DEFAULT_DOMAIN')
else:
domain = htk_setting('HTK_DEFAULT_DOMAIN')
base_url = '%(protocol)s://%(domain)s' % {
'protocol' : protocol,
'domain' : domain,
}
context = {
'base_url': base_url,
'site_name': htk_setting('HTK_SITE_NAME'),
'support_email': htk_setting('HTK_SUPPORT_EMAIL'),
}
return context
def get_email_context():
"""Get the email context dictionary for templated emails
"""
email_context_generator = htk_setting('HTK_EMAIL_CONTEXT_GENERATOR')
context = {}
if email_context_generator:
method = resolve_method_dynamically(email_context_generator)
if method:
context = method()
else:
pass
else:
pass
return context
def attach_images_to_message(message, images):
for image in images:
fp = open(image, 'rb')
filename = os.path.basename(image)
msg_image = MIMEImage(fp.read())
fp.close()
msg_image.add_header('Content-ID', '<%s>' % filename)
message.attach(msg_image)
def send_email(
template=None,
subject='',
sender=None,
reply_to=None,
to=None,
cc=None,
bcc=None,
context=None,
text_only=False,
headers=None
):
"""Sends a templated email w/ text and HTML
"""
if headers is None:
headers = {}
if reply_to is not None:
headers['Reply-To'] = reply_to
template = template or 'base'
sender = sender or htk_setting('HTK_DEFAULT_EMAIL_SENDER', HTK_DEFAULT_EMAIL_SENDER)
to = to or htk_setting('HTK_DEFAULT_EMAIL_RECIPIENTS', HTK_DEFAULT_EMAIL_RECIPIENTS)
bcc = bcc or []
cc = cc or []
base_context = get_email_context()
if context:
base_context.update(context)
else:
pass
context = base_context
if settings.ENV_DEV:
subject = '[%s-dev] %s' % (htk_setting('HTK_SYMBOLIC_SITE_NAME'), subject,)
# assume HTML template exists, get that first
try:
html_template = get_template('emails/%s.html' % template)
context['base_template'] = htk_setting('HTK_EMAIL_BASE_TEMPLATE_HTML')
html_content = html_template.render(context)
except TemplateDoesNotExist:
html_template = None
html_content = ''
# if native text template exists, use it
try:
context['base_template'] = htk_setting('HTK_EMAIL_BASE_TEMPLATE_TEXT')
text_template = get_template('emails/%s.txt' % template)
text_content = text_template.render(context)
except TemplateDoesNotExist:
text_template = None
# convert HTML to text
if html_template:
html_text_content = html_template.render(context)
text_content = html2markdown(html_text_content)
else:
text_content = ''
msg = EmailMultiAlternatives(
subject=subject,
body=text_content,
from_email=sender,
to=to,
bcc=bcc,
cc=cc,
headers=headers
)
if not text_only and html_content:
msg.attach_alternative(html_content, 'text/html')
else:
pass
email_attachments = htk_setting('HTK_EMAIL_ATTACHMENTS')
if email_attachments:
attach_images_to_message(msg, email_attachments)
#for attachment in email_attachments:
# msg.attach_file(attachment)
msg.send()
def send_markdown_email(
subject='',
sender=None,
to=None,
cc=None,
bcc=None,
markdown_content=''
):
"""Sends an email w/ text and HTML produced from Markdown
"""
sender = sender or htk_setting('HTK_DEFAULT_EMAIL_SENDER', HTK_DEFAULT_EMAIL_SENDER)
to = to or htk_setting('HTK_DEFAULT_EMAIL_RECIPIENTS', HTK_DEFAULT_EMAIL_RECIPIENTS)
bcc = bcc or []
cc = cc or []
if settings.ENV_DEV:
subject = '[%s-dev] %s' % (htk_setting('HTK_SYMBOLIC_SITE_NAME'), subject,)
msg = EmailMultiAlternatives(subject=subject,
body=markdown_content,
from_email=sender,
to=to,
bcc=bcc,
cc=cc)
import markdown
html_content = markdown.markdown(markdown_content)
msg.attach_alternative(html_content, 'text/html')
email_attachments = htk_setting('HTK_EMAIL_ATTACHMENTS')
if email_attachments:
attach_images_to_message(msg, email_attachments)
#for attachment in email_attachments:
# msg.attach_file(attachment)
msg.send()