Site/programmer/templates/emails/new_product_notification.html

16 lines
882 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
</head>
<body>
<h2>Здравствуйте!</h2>
<p>На сайте <strong>{{ site_name }}</strong> появился новый продукт:</p>
<h3><a href="{{ site_url }}{{ product.get_absolute_url }}">{{ product.title }}</a></h3>
<p>{{ product.short_description|truncatewords:40 }}</p>
<p>Подробнее: <a href="{{ site_url }}{{ product.get_absolute_url }}">{{ site_url }}{{ product.get_absolute_url }}</a></p>
<hr>
<p style="color: #666; font-size: 12px;">Вы получили это письмо, потому что подписаны на уведомления о новых продуктах.</p>
<p style="color: #666; font-size: 12px;">Отписаться можно в <a href="{{ site_url }}{% url 'profile' %}">личном кабинете</a>.</p>
</body>
</html>