mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 21:52:35 +01:00
26 lines
641 B
PHP
Executable File
26 lines
641 B
PHP
Executable File
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
</head>
|
|
<body>
|
|
|
|
{{ $clientName }},<p/>
|
|
|
|
{{ trans("texts.{$entityType}_message", ['amount' => $invoiceAmount]) }}<p/>
|
|
<a href="{{ $link }}">{{ $link }}</a><p/>
|
|
|
|
@if ($emailFooter)
|
|
{{ nl2br($emailFooter) }}
|
|
@else
|
|
{{ trans('texts.email_signature') }}<br/>
|
|
{{ $accountName }}
|
|
@endif
|
|
|
|
@if ($showNinjaFooter)
|
|
<p/>
|
|
{{ trans('texts.ninja_email_footer', ['site' => '<a href="https://www.invoiceninja.com/?utm_source=invoice_email_footer">Invoice Ninja</a>']) }}
|
|
@endif
|
|
|
|
</body>
|
|
</html> |