<html>
<head>
<title>Mails im Spamfilter an {$email}</title>
</head>
<body>
<h1>Mails im Spamfilter an {$email}</h1>
<a href="index.php">Zurück</a><br /><br />
<table>
<tr bgcolor="#eed0d0">
<td>Absender</td>
<td>Betreff</td>
<td>Größe</td>
<td>Datum</td>
<td>Spamordner</td>
<td>Aktion</td>
</tr>
{foreach from=$msgs item=item}
<tr bgcolor="{cycle values="#eeeeee,#d0d0d0"}">
<td>{$item.1|escape:"htmlall"}</td>
<td>{$item.2|escape:"htmlall"}</td>
<td>{$item.3|escape:"htmlall"}</td>
<td>{$item.4|escape:"htmlall"}</td>
<td>{$item.5|escape:"htmlall"}</td>
<td>{$item.7}</td>
</tr>
{/foreach}
</table>
<br />
<small>Zum Aktualisieren der Seite bitte den Reload-Button des Browsers benutzen</small>
</body>
</html>