25 lines
653 B
PHP
25 lines
653 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace External\PompoBundle\Email;
|
|
|
|
use KupShop\KupShopBundle\Email\BaseEmail;
|
|
|
|
class PompoPartnerCouponsEmail extends BaseEmail
|
|
{
|
|
protected static $name = '[pompo] Notifikace o docházejících partnerských poukazech';
|
|
protected static $type = 'POMPO_NOTIFY_PARTNER_COUPONS';
|
|
protected static $priority = -20;
|
|
|
|
protected $subject = 'Notifikace o docházejících partnerských poukazech';
|
|
protected $template = 'email/email_pompo_notify_partner_coupons.tpl';
|
|
|
|
public array $coupons = [];
|
|
|
|
public function setCoupons(array $coupons): void
|
|
{
|
|
$this->coupons = $coupons;
|
|
}
|
|
}
|