brack3t / Djrill

[INACTIVE/UNMAINTAINED] Djrill is an email backend and new message class for Django users that want to take advantage of the Mandrill transactional email service from MailChimp.
BSD 3-Clause "New" or "Revised" License
319 stars 64 forks source link

merge_vars on django template example #46

Closed mirzadelic closed 11 years ago

mirzadelic commented 11 years ago

Can merge_vars be used in django templates, so django pass template in html to mandrill and it use merge_vars from that template?

msg = EmailMessage(subject=subject, from_email="store@example.com",
                   to=["customer@example.com"], body=text_body)
msg.attach_alternative(html_body, "text/html")
//here merge vars
msg.send()
mirzadelic commented 11 years ago

It works, sorry.