1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-24 02:11:34 +02:00
invoiceninja/app/views/emails/invoice_html.blade.php
2014-05-21 00:40:09 +03:00

24 lines
520 B
PHP
Executable File

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
{{ $clientName }},<p/>
{{ trans("texts.{$entityType}_message", ['amount' => $invoiceAmount]) }}<p/>
{{ $link }}<p/>
@if ($emailFooter)
{{ nl2br($emailFooter) }}
@else
{{ trans('texts.email_signature') }}<br/>
{{ $accountName }}
@endif
<p/>
{{ trans('texts.ninja_email_footer', ['site' => '<a href="'.SITE_URL.'">Invoice Ninja</a>']) }}
</body>
</html>