Django send email with template render_string


Here is quick example sending email in Django using template html.

1
2
3
4
body = render_to_string("path/email_reset_password.html",
                                            {"user": user})
                   
send_mail(subject, body, from, [to], fail_silently=False)

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.