36 lines
1.4 KiB
PHP
36 lines
1.4 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Ihre Pressemitteilung wurde abgelehnt</title>
|
|
<style>
|
|
body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; max-width: 600px; margin: 0 auto; padding: 20px; }
|
|
.btn { display: inline-block; background: #2563eb; color: #fff; padding: 12px 28px; border-radius: 6px; text-decoration: none; font-weight: bold; margin: 16px 0; }
|
|
.title { font-size: 18px; font-weight: bold; margin: 12px 0; color: #111; }
|
|
.reason { background: #fef2f2; border-left: 4px solid #dc2626; padding: 12px 16px; margin: 16px 0; color: #7f1d1d; }
|
|
.note { font-size: 13px; color: #666; border-top: 1px solid #eee; padding-top: 12px; margin-top: 24px; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>Hallo {{ $user->name }},</p>
|
|
|
|
<p>Ihre eingereichte Pressemitteilung konnte leider nicht veröffentlicht werden.</p>
|
|
|
|
<p class="title">{{ $pressRelease->title }}</p>
|
|
|
|
@if($reason)
|
|
<div class="reason">
|
|
<strong>Ablehnungsgrund:</strong><br>
|
|
{{ $reason }}
|
|
</div>
|
|
@else
|
|
<p>Bitte überarbeiten Sie den Inhalt und reichen Sie die Pressemitteilung erneut ein.</p>
|
|
@endif
|
|
|
|
<p><a class="btn" href="{{ $editUrl }}">Pressemitteilung bearbeiten</a></p>
|
|
|
|
<div class="note">
|
|
<p>Bei Fragen erreichen Sie uns unter {{ config('mail.from.address') }}.</p>
|
|
</div>
|
|
</body>
|
|
</html>
|