1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 17:31:35 +02:00
invoiceninja/resources/views/email/admin/generic_email.blade.php

23 lines
879 B
PHP
Raw Normal View History

2021-06-12 23:02:12 +02:00
@component('email.template.admin', ['settings' => $settings, 'logo' => $logo])
<div class="center">
<h1>{{ $title }}</h1>
2021-06-12 23:02:12 +02:00
{{ ctrans("texts.{$body}") }}
2021-06-12 23:02:12 +02:00
@isset($view_link)
<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="{{ $view_link }}" target="_blank" style="border: 0 !important;font-size: 18px; font-family: Helvetica, Arial, sans-serif; color: #ffffff; text-decoration: none; display: inline-block; ">{{ $view_text }}</a>
</td>
</tr>
</table>
2021-06-12 23:02:12 +02:00
@endisset
2021-06-12 23:02:12 +02:00
@isset($signature)
<p>{{ $signature }}</p>
@endisset
</div>
@endcomponent