112 lines
2.6 KiB
PHP
112 lines
2.6 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="de">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Neue Kontaktanfrage</title>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
background-color: #f4f6f8;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
color: #333;
|
|
}
|
|
|
|
.wrapper {
|
|
width: 100%;
|
|
padding: 30px 0;
|
|
}
|
|
|
|
.container {
|
|
max-width: 520px;
|
|
margin: 0 auto;
|
|
background: #ffffff;
|
|
border-radius: 12px;
|
|
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
|
|
padding: 28px;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 20px;
|
|
margin-bottom: 20px;
|
|
text-align: center;
|
|
color: #111827;
|
|
}
|
|
|
|
p {
|
|
font-size: 14px;
|
|
line-height: 1.6;
|
|
margin-bottom: 12px;
|
|
color: #4b5563;
|
|
}
|
|
|
|
.info-box {
|
|
background: #f9fafb;
|
|
border-left: 4px solid #0d6efd;
|
|
padding: 14px 18px;
|
|
border-radius: 6px;
|
|
margin: 20px 0;
|
|
}
|
|
|
|
.info-box p {
|
|
margin: 6px 0;
|
|
font-size: 14px;
|
|
color: #374151;
|
|
}
|
|
|
|
.info-box strong {
|
|
color: #111827;
|
|
}
|
|
|
|
.message-box {
|
|
background: #ffffff;
|
|
border: 1px solid #e5e7eb;
|
|
border-radius: 8px;
|
|
padding: 14px;
|
|
font-size: 14px;
|
|
color: #374151;
|
|
white-space: pre-line;
|
|
}
|
|
|
|
.footer {
|
|
margin-top: 22px;
|
|
font-size: 12px;
|
|
text-align: center;
|
|
color: #9ca3af;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="wrapper">
|
|
<div class="container">
|
|
|
|
<h1>Neue Kontaktanfrage</h1>
|
|
|
|
<p>Du hast eine neue Nachricht über das Kontaktformular erhalten.</p>
|
|
|
|
<div class="info-box">
|
|
<p><strong>Name:</strong> {{ $name }}</p>
|
|
<p><strong>E-Mail:</strong> {{ $email }}</p>
|
|
<p><strong>Betreff:</strong> {{ $subject }}</p>
|
|
</div>
|
|
|
|
<p><strong>Nachricht:</strong></p>
|
|
|
|
<div class="message-box">
|
|
{{ $message }}
|
|
</div>
|
|
|
|
<div class="footer">
|
|
© {{ date('Y') }} {{ env('APP_NAME') }} · Automatisch generierte Nachricht
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|