Files
kupshop/bundles/KupShop/B2BBundle/Twig/Components/B2BUserRegistration/B2BUserRegistrationAnswerEmail.php
2025-08-02 16:30:27 +02:00

17 lines
567 B
PHP

<?php
namespace KupShop\B2BBundle\Twig\Components\B2BUserRegistration;
class B2BUserRegistrationAnswerEmail extends B2BUserRegistrationEmail
{
protected static $name = 'Děkujeme za registraci';
protected static $type = 'B2BUSERREGISTRATIONEMAIL_ANSWER_TEMPLATE';
protected $subject = 'Děkujeme za registraci';
public $is_answer = true;
public function renderEmail($message, $data = [], $base_template = '@B2B/emails/b2b-registration_answer.html.twig'): array
{
return parent::renderEmail($message, $data, $base_template);
}
}