mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 13:42:49 +01:00
22 lines
905 B
PHP
22 lines
905 B
PHP
@component('email.template.admin', ['logo' => $logo, 'settings' => $settings])
|
|
<div class="center">
|
|
<h1>{{ ctrans('texts.quotes_backup_subject') }}</h1>
|
|
<p>{{ ctrans('texts.download_timeframe') }}</p>
|
|
<!--
|
|
<a target="_blank" class="button" href="{{ $url }}">
|
|
{{ ctrans('texts.download') }}
|
|
</a> -->
|
|
|
|
<table border="0" cellspacing="0" cellpadding="0" align="center">
|
|
<tr style="border: 0 !important; ">
|
|
<td class="new_button" style="padding: 12px 18px 12px 18px; border-radius:5px;" align="center">
|
|
|
|
<a href="{{ $url }}" target="_blank" style="border: 0 !important;font-size: 18px; font-family: Helvetica, Arial, sans-serif; color: #ffffff; text-decoration: none; display: inline-block;"> {{ ctrans('texts.download') }}</a>
|
|
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
</div>
|
|
@endcomponent
|