1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38:
<?php
namespace FlexiPeeHP\Bricks;
class PotvrzeniUhrady extends \Ease\Mailer
{
public function __construct($invoice)
{
$body = new \Ease\Container();
$this->addItem(new \Ease\Html\DivTag(_('Dear customer,')));
$this->addItem(new \Ease\Html\DivTag(sprintf(_('we confirm receipt of payment %s %s on %s '),
$invoice->getDataValue('sumCelkem'),
\FlexiPeeHP\FlexiBeeRO::uncode($invoice->getDataValue('mena')),
$invoice->getDataValue('kod'))));
parent::__construct($to,
_('Confirmation of receipt of invoice payment'), $body);
}
}