18 lines
500 B
PHP
18 lines
500 B
PHP
<?php
|
|
// templates/mail/en/supplier_new_order_items.php
|
|
|
|
/**
|
|
* @var int $order_id
|
|
* @var string $product_list_supplier_html
|
|
*/
|
|
?>
|
|
|
|
<p>Hello,</p>
|
|
<p>You have new items to prepare for order #<?php echo $order_id; ?>.</p>
|
|
<p><strong>Items to ship:</strong></p>
|
|
<ul>
|
|
<?php foreach ($supplier_items as $item): ?>
|
|
<li><?php echo htmlspecialchars($item['name']); ?> (Quantity: <?php echo $item['quantity']; ?>)</li>
|
|
<?php endforeach; ?>
|
|
</ul>
|
|
<p>Please prepare the items for shipment.</p>
|