mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-13 22:54:25 +01:00
20 lines
340 B
PHP
20 lines
340 B
PHP
|
<!DOCTYPE html>
|
||
|
<html lang="en-US">
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
{{ $clientName }},<p/>
|
||
|
|
||
|
Thank you for your payment of {{ $paymentAmount }}.<p/>
|
||
|
|
||
|
@if ($emailFooter)
|
||
|
{{ $emailFooter }}
|
||
|
@else
|
||
|
Best regards,<br/>
|
||
|
{{ $accountName }}
|
||
|
@endif
|
||
|
|
||
|
</body>
|
||
|
</html>
|