Files
kupshop/bundles/KupShop/SalesBundle/Email/SaleCreateEmail.php
2025-08-02 16:30:27 +02:00

16 lines
381 B
PHP

<?php
declare(strict_types=1);
namespace KupShop\SalesBundle\Email;
class SaleCreateEmail extends SaleEmail
{
protected static $name = 'Vytvoření nové prodejky';
protected static $type = 'SALE_CREATE';
protected static $priority = 0;
protected $subject = 'Děkujeme za Váš nákup {KOD_PRODEJKY}';
protected $template = 'email/email_sale_create.tpl';
}