sending email templates in with django
- by Anakin
hey,
i wanna send emails in html template like this.
<html>
<body>
hello <strong>{{username}}</strong>
your account activated.
<img src="mysite.com/logo.gif" />
</body>
it means, i want to send fully html powered templates, with django datas.
i cant find anything about send_mail, and django-mailer only sends html templates, not with dynamic datas?
any idea about html emails ?
thanks.