I want to send HTML-emails, using Django templates like this:
<html>
<body>
hello <strong>{{username}}</strong>
your account activated.
<img src="https://stackoverflow.com/questions/2809547/mysite.com/logo.gif" />
</body>
I can’t find anything about send_mail
, and django-mailer only sends HTML templates, without dynamic data.
How do I use Django’s template engine to generate e-mails?