17 lines
567 B
PHP
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);
|
|
}
|
|
}
|