mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-13 14:42:42 +01:00
30 lines
679 B
PHP
30 lines
679 B
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
</head>
|
|
<body>
|
|
|
|
{{ $clientName }},<p/>
|
|
|
|
{{ trans('texts.payment_message', ['amount' => $paymentAmount]) }}<p/>
|
|
|
|
@if (isset($emailMessage) && $emailMessage)
|
|
{{ $emailMessage }}<p/>
|
|
@endif
|
|
|
|
@if ($emailFooter)
|
|
{{ nl2br($emailFooter) }}
|
|
@else
|
|
{{ trans('texts.email_signature') }}<br/>
|
|
{{ $accountName }}
|
|
@endif
|
|
|
|
@if ($showNinjaFooter)
|
|
<p/>
|
|
{{ trans('texts.ninja_email_footer', ['site' => '<a href="' . NINJA_URL . '/?utm_source=payment_email_footer">Invoice Ninja</a>']) }}
|
|
@endif
|
|
|
|
</body>
|
|
</html>
|