{% extends 'email/base.html.twig' %} {% block title %}Low Stock Alert - KitsCo{% endblock %} {% block content %}
The following products are running low on stock and may need reordering.
Action required to maintain inventory levels and avoid stockouts.
| Product | SKU | In Stock | Threshold |
|---|---|---|---|
|
{{ item.product.name }}
{% if item.product.stockQuantity <= 0 %}
OUT OF STOCK {% endif %} |
{{ item.product.sku }} | {{ item.product.stockQuantity }} | {{ item.threshold }} |
| Out of Stock | {{ outOfStock }} items |
| Critical (Below 50%) | {{ criticalStock }} items |
| Low Stock | {{ lowStock }} items |
This is an automated inventory alert. Stock levels are checked periodically.
{% endblock %} {% block contact_section %}{% endblock %}