16 lines
381 B
PHP
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';
|
|
}
|