35 lines
1.9 KiB
PHP
35 lines
1.9 KiB
PHP
<x-mail.layout
|
|
:heading="__('dormant_mail.heading')"
|
|
:preheader="__('dormant_mail.preheader', ['days' => $days])"
|
|
:greeting="$name !== '' ? __('dormant_mail.greeting', ['name' => $name]) : null"
|
|
>
|
|
|
|
<tr><td style="padding:0 24px 20px 24px;">
|
|
<p style="margin:0;font-size:15px;line-height:24px;color:#43434e;">{{ __('dormant_mail.intro', ['days' => $days]) }}</p>
|
|
</td></tr>
|
|
|
|
{{-- The one thing that stops it. A single button, because there is exactly one
|
|
action and asking somebody to "log in or place an order or write to us"
|
|
leaves them deciding which. --}}
|
|
<tr><td style="padding:0 24px;">
|
|
<p style="margin:0 0 16px 0;font-size:15px;line-height:24px;color:#43434e;">{{ __('dormant_mail.how_to_keep') }}</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="{{ $loginUrl }}" 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;">{{ __('dormant_mail.action') }}</a>
|
|
</td></tr>
|
|
</table>
|
|
</td></tr>
|
|
|
|
<tr><td style="padding:24px 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;">
|
|
{{-- Said out loud: nothing is lost, because there was never anything
|
|
to lose. Somebody who reads "your account will be deleted" and
|
|
owns nothing still wonders about invoices and files. --}}
|
|
<p style="margin:0;font-size:13px;line-height:20px;color:#6e6e7a;">{{ __('dormant_mail.nothing_lost') }}</p>
|
|
</td></tr>
|
|
</table>
|
|
</td></tr>
|
|
|
|
</x-mail.layout>
|