{% extends 'email/base.html.twig' %} {% block title %}Low Stock Alert - KitsCo{% endblock %} {% block content %}
📦

Low Stock Alert

The following products are running low on stock and may need reordering.

{{ products|length }} Product{{ products|length > 1 ? 's' : '' }} Below Threshold

Action required to maintain inventory levels and avoid stockouts.

{% for item in products %} {% endfor %}
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 }}
{% set outOfStock = products|filter(p => p.product.stockQuantity <= 0)|length %} {% set criticalStock = products|filter(p => p.product.stockQuantity > 0 and p.product.stockQuantity <= p.threshold / 2)|length %} {% set lowStock = products|filter(p => p.product.stockQuantity > p.threshold / 2)|length %}
Out of Stock {{ outOfStock }} items
Critical (Below 50%) {{ criticalStock }} items
Low Stock {{ lowStock }} items

Recommended Actions

  1. Review current supplier lead times
  2. Create purchase orders for critical items
  3. Check for any pending stock receipts
  4. Update product availability on website if needed
View Inventory

This is an automated inventory alert. Stock levels are checked periodically.

{% endblock %} {% block contact_section %}{% endblock %}