Files
webprogrammierung/content/show-mail.php
T
2026-06-25 22:46:14 +02:00

19 lines
324 B
PHP

<?php
$token = basename($_GET["token"] ?? "");
$file = "data/mails/" . $token . ".html";
if (!file_exists($file)) {
echo "<p>Datei nicht gefunden.</p>";
exit();
}
?>
<main class="login-page">
<div class="login-container">
<h1>Simulierte E-Mail</h1>
<?php include $file; ?>
</div>
</main>