awesto / django-shop

A Django based shop system
http://www.django-shop.org
BSD 3-Clause "New" or "Revised" License
3.18k stars 1.04k forks source link

Error sending email about the purchase #769

Open stilet opened 5 years ago

stilet commented 5 years ago

TemplateSyntaxError: 'html_email' is not a registered tag library.

jrief commented 5 years ago

Which version of django-SHOP and django-post_office are you using? Check your settings, you should have

POST_OFFICE = {
    'TEMPLATE_ENGINE': 'post_office',
}
stilet commented 5 years ago

django-post-office==3.2.1 django-shop==1.0.2

POST_OFFICE = {
    'TEMPLATE_ENGINE': 'post_office',
}

POST_OFFICE is in settings

stilet commented 5 years ago

I checked post-office templatetags - there is no such tag html_email

jrief commented 5 years ago

It would be helpful to know, which template file is referring the templatetag html_email.

stilet commented 5 years ago

project name = garantum garantum/garantum/templates/garantum/email/base.html

{% extends "shop/email/base.html" %}
{% load html_email %}

{% block email-logo %}
<img src="{% image_src 'garantum/django-shop-logo.png' %}" width="200" style="margin: 20px auto; display: block;" />
{% endblock %}
{% endcomment %}
stilet commented 5 years ago

I would like to thank You for a wonderful project. I was able to launch the site in a couple of weeks. Sorry for bad English ) https://garantum.ru

jrief commented 5 years ago

The template garantum/garantum/templates/garantum/email/base.htmlseem to be from your own project. So you must fix it there.