generated from boboko/starter
14 lines
724 B
PHP
14 lines
724 B
PHP
{{--
|
|
@include('emails.partials.button', ['url' => ..., 'label' => ...])
|
|
|
|
Bulletproof button: the padding sits on the link (whole area clickable)
|
|
with mso-padding-alt on the cell so Outlook keeps the same size.
|
|
--}}
|
|
<table role="presentation" cellpadding="0" cellspacing="0" style="margin:0;">
|
|
<tr>
|
|
<td bgcolor="#18c28a" style="background-color:#18c28a;border:1px solid #000000;border-radius:0;mso-padding-alt:14px 28px;">
|
|
<a href="{{ $url }}" target="_blank" style="display:inline-block;padding:14px 28px;font-family:'Manrope',Arial,Helvetica,sans-serif;font-size:16px;line-height:1.2;font-weight:700;color:#000000;text-decoration:none;">{{ $label }}</a>
|
|
</td>
|
|
</tr>
|
|
</table>
|