41 lines
2.4 KiB
PHP
41 lines
2.4 KiB
PHP
<x-mail.layout
|
|
:heading="__('verify_email.heading')"
|
|
:preheader="__('verify_email.preheader', ['minutes' => $minutes])"
|
|
:greeting="$name ? __('verify_email.greeting', ['name' => $name]) : null"
|
|
>
|
|
|
|
<tr><td style="padding:0 24px 24px 24px;">
|
|
<p style="margin:0;font-size:15px;line-height:24px;color:#43434e;">{{ __('verify_email.intro') }}</p>
|
|
</td></tr>
|
|
|
|
<tr><td style="padding:0 24px;">
|
|
<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;">{{ __('verify_email.action') }}</a>
|
|
</td></tr>
|
|
</table>
|
|
<p style="margin:14px 0 0 0;font-size:13px;line-height:20px;color:#6e6e7a;">{!! __('verify_email.expiry', ['minutes' => '<strong style="color:#43434e;font-weight:600;">'.$minutes.' Minuten</strong>']) !!}</p>
|
|
</td></tr>
|
|
|
|
{{-- The link as text as well. Corporate mail gateways rewrite button links and
|
|
some of them fetch the target first to scan it — on a single-use link that
|
|
burns the confirmation before the recipient ever sees it. --}}
|
|
<tr><td style="padding:28px 24px 0 24px;">
|
|
<table role="presentation" width="100%" cellpadding="0" cellspacing="0" border="0" style="border-collapse:collapse;background-color:#fafafb;border:1px solid #e9e9ee;border-radius:8px;">
|
|
<tr><td style="padding:14px 16px;">
|
|
<p style="margin:0 0 6px 0;font-size:12px;line-height:16px;color:#6e6e7a;">{{ __('verify_email.fallback') }}</p>
|
|
<p style="margin:0;font-family:'IBM Plex Mono',ui-monospace,Menlo,Consolas,monospace;font-size:12px;line-height:18px;color:#b8500a;word-break:break-all;">{{ $url }}</p>
|
|
</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;">
|
|
<p style="margin:0;font-size:13px;line-height:20px;color:#6e6e7a;">{{ __('verify_email.not_you') }}</p>
|
|
</td></tr>
|
|
</table>
|
|
</td></tr>
|
|
|
|
</x-mail.layout>
|