10 lines
674 B
PHP
10 lines
674 B
PHP
<? global $config;?>
|
|
<p style="font-weight: bold;">Witaj,</p>
|
|
<p>poniżej znajdziesz wiadomość wysłaną ze strony <span style="font-weight: bold;">www.<?= $config['page'];?></span>.</p>
|
|
<p></p>
|
|
<p><span style="font-weight: bold;">Imię i nazwisko:</span> <?= $this -> _data['ac-name'];?></p>
|
|
<p><span style="font-weight: bold;">Firma:</span> <?= $this -> _data['ac-firm'];?></p>
|
|
<p><span style="font-weight: bold;">Email:</span> <?= $this -> _data['ac-email'];?></p>
|
|
<p><span style="font-weight: bold;">Roczna ilość:</span> <?= $this -> _data['ac-quantity'];?></p>
|
|
<p><span style="font-weight: bold;">Treść:</span></p>
|
|
<p><?= nl2br( $this -> _data['ac-text'] );?></p>
|