ACC SHELL
<html>
<head>
<style type="text/css">
table {border-collapse:collapse;}
table.small th {width:120px;}
tr {text-align:left;}
th {padding:5px 5px;border:1px solid black; width:200px; font-weight: bold;}
th.auto {width:auto;}
td {padding:3px 5px;border:1px solid black; text-align: center;}
td.left {text-align:left;}
</style>
</head>
<body>
<h1>Dobrý den,</h1>
<p>došlo k vyplnění registračního formuláře pro newsletter:</p>
<h2>Klient:</h2>
<table class="small">
<tr>
<th>Jméno:</th>
<td><?= $data['jmeno'] ?></td>
</tr>
<tr>
<th>Email:</th>
<td><?= $data['email'] ?></td>
</tr>
</table>
</body>
</html>
ACC SHELL 2018