2016-05-30 14:58:55 +00:00
|
|
|
from django.core.mail import EmailMultiAlternatives
|
|
|
|
from django.conf import settings
|
|
|
|
from django.template.loader import render_to_string
|
|
|
|
|
|
|
|
|
|
|
|
def send_email(emailtype, recipient, formatdict, subject, sender='BornHack <noreply@bornhack.dk>', attachment=None):
|
|
|
|
### determine email type, set template and attachment vars
|
|
|
|
html_template=None
|
|
|
|
|
|
|
|
if emailtype == 'invoice':
|
2016-05-30 16:09:21 +00:00
|
|
|
text_template = 'emails/invoice_email.txt'
|
|
|
|
html_template = 'emails/invoice_email.html'
|
|
|
|
attachment_filename = formatdict['filename']
|
2016-05-30 14:58:55 +00:00
|
|
|
elif emailtype == 'testmail':
|
|
|
|
text_template = 'emails/testmail.txt'
|
|
|
|
else:
|
|
|
|
print 'Unknown email type: %s' % emailtype
|
|
|
|
return False
|
|
|
|
|
|
|
|
try:
|
|
|
|
### put the basic email together
|
|
|
|
msg = EmailMultiAlternatives(subject, render_to_string(text_template, formatdict), sender, [recipient], [settings.ARCHIVE_EMAIL])
|
|
|
|
|
|
|
|
### is there a html version of this email?
|
|
|
|
if html_template:
|
|
|
|
msg.attach_alternative(render_to_string(html_template, formatdict), 'text/html')
|
|
|
|
|
2016-05-30 16:09:21 +00:00
|
|
|
### is there a pdf attachment to this mail?
|
2016-05-30 14:58:55 +00:00
|
|
|
if attachment:
|
|
|
|
msg.attach(attachment_filename, attachment, 'application/pdf')
|
|
|
|
|
|
|
|
except Exception as E:
|
|
|
|
print 'exception while rendering email: %s' % E
|
|
|
|
return False
|
|
|
|
|
|
|
|
### send the email
|
|
|
|
msg.send()
|
|
|
|
|
|
|
|
### all good
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
2016-05-30 18:30:52 +00:00
|
|
|
def send_invoice_email(invoice):
|
2016-05-30 14:58:55 +00:00
|
|
|
# put formatdict together
|
|
|
|
formatdict = {
|
2016-05-30 16:09:21 +00:00
|
|
|
'ordernumber': invoice.order.pk,
|
|
|
|
'invoicenumber': invoice.pk,
|
|
|
|
'filename': invoice.filename,
|
2016-05-30 14:58:55 +00:00
|
|
|
}
|
|
|
|
|
2016-05-30 16:09:21 +00:00
|
|
|
subject = 'BornHack invoice %s' % invoice.pk
|
2016-05-30 14:58:55 +00:00
|
|
|
|
|
|
|
# send mail
|
|
|
|
return send_email(
|
|
|
|
emailtype='invoice',
|
2016-05-30 16:09:21 +00:00
|
|
|
recipient=invoice.order.user.email,
|
2016-05-30 14:58:55 +00:00
|
|
|
formatdict=formatdict,
|
|
|
|
subject=subject,
|
|
|
|
sender='noreply@bornfiber.dk',
|
2016-05-30 18:50:39 +00:00
|
|
|
attachment=invoice.pdf.read(),
|
2016-05-30 14:58:55 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def send_test_email(recipient):
|
|
|
|
return send_email(
|
|
|
|
emailtype='testmail',
|
|
|
|
recipient=recipient,
|
|
|
|
subject='testmail from bornhack website',
|
|
|
|
)
|
|
|
|
|