24 lines
627 B
PHP
24 lines
627 B
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
<h1>Bericht über E-Mail-Zustellung</h1>
|
|
<p>Die folgende Nachricht wurde an <strong>{{$countRecipients}} Personen</strong> gesendet:</p>
|
|
|
|
<table>
|
|
<tr style="vertical-align: top;">
|
|
<th style="padding-right: 20px;">Liste der Empfänger*innen:</th>
|
|
<td>{!! $recipients !!}</td>
|
|
</tr>
|
|
</table>
|
|
<hr />
|
|
<h2>Nachricht</h2>
|
|
|
|
<p>{!! $mailMessage !!}</p>
|
|
<br /><br />
|
|
<p>
|
|
<hr />
|
|
@include('emails.subparts.disclaimer')
|
|
</p>
|
|
</body>
|
|
</html>
|