24 lines
527 B
PHP
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;
|
|
}
|