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

24 lines
527 B
PHP

<?php
declare(strict_types=1);
namespace KupShop\TrustpilotBundle\Email;
use KupShop\KupShopBundle\Email\EmailGroupTypeEnum;
use KupShop\KupShopBundle\Email\OrderEmail;
class TrustPilotEmail extends OrderEmail
{
protected static $name = 'Trustpilot';
protected static $type = 'ORDER_TRUSTPILOT';
protected static $group = EmailGroupTypeEnum::HIDDEN;
protected $template = 'email/trustpilot.tpl';
protected $enabled = true;
protected $defaultEnabled = 'N';
protected $logSentEmail = false;
}