40 lines
2.2 KiB
PHP
40 lines
2.2 KiB
PHP
<x-mail.layout
|
|
:heading="__('service_ending.heading')"
|
|
:preheader="__('service_ending.preheader', ['date' => $date])"
|
|
:greeting="$name !== '' ? __('service_ending.greeting', ['name' => $name]) : null"
|
|
>
|
|
|
|
<tr><td style="padding:0 24px 20px 24px;">
|
|
<p style="margin:0;font-size:15px;line-height:24px;color:#43434e;">{{ __('service_ending.intro', ['date' => $date]) }}</p>
|
|
</td></tr>
|
|
|
|
{{-- Das eine Ziel dieser Mail: bis wann, und wie komme ich vorher an meine
|
|
eigenen Dateien. Ein Knopf statt einer Adresse im Fliesstext, weil das
|
|
hier keine Nebeninformation ist, sondern der Grund, warum die Mail
|
|
verschickt wird. --}}
|
|
<tr><td style="padding:0 24px {{ $exportWish === true ? '0' : '32px' }} 24px;">
|
|
<p style="margin:0 0 16px 0;font-size:15px;line-height:24px;color:#43434e;">{{ __('service_ending.how_to_download') }}</p>
|
|
<table role="presentation" cellpadding="0" cellspacing="0" border="0" style="border-collapse:collapse;">
|
|
<tr><td align="center" bgcolor="#b8500a" style="background-color:#b8500a;border-radius:8px;">
|
|
<a href="{{ $url }}" style="display:inline-block;padding:13px 26px;font-family:'IBM Plex Sans',-apple-system,Helvetica,Arial,sans-serif;font-size:15px;line-height:20px;font-weight:600;color:#ffffff;text-decoration:none;border-radius:8px;">{{ __('service_ending.action') }}</a>
|
|
</td></tr>
|
|
</table>
|
|
</td></tr>
|
|
|
|
{{-- Nur, wer beim Kündigen "ja" gesagt hat. Ein "nein" bedeutet ausdrücklich
|
|
"bereitet nichts vor" (ConfirmCancelPackage) — ihm hier trotzdem einen
|
|
Export anzukündigen wäre ein Versprechen, das niemand eingelöst hätte.
|
|
Und `null` heißt "nie gefragt": auch dafür ist der Satz falsch, deshalb
|
|
der strikte Vergleich auf true. --}}
|
|
@if ($exportWish === true)
|
|
<tr><td style="padding:20px 24px 32px 24px;">
|
|
<table role="presentation" width="100%" cellpadding="0" cellspacing="0" border="0" style="border-collapse:collapse;">
|
|
<tr><td style="border-top:1px solid #e9e9ee;padding-top:20px;">
|
|
<p style="margin:0;font-size:13px;line-height:20px;color:#6e6e7a;">{{ __('service_ending.export_prepared') }}</p>
|
|
</td></tr>
|
|
</table>
|
|
</td></tr>
|
|
@endif
|
|
|
|
</x-mail.layout>
|