1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-24 18:27:10 +02:00
invoiceninja/app/views/emails/payment_confirmation_html.blade.php

20 lines
347 B
PHP
Raw Normal View History

2014-01-29 11:41:38 +01:00
<!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)
2014-02-19 14:28:29 +01:00
{{ nl2br($emailFooter) }}
2014-01-29 11:41:38 +01:00
@else
Best regards,<br/>
{{ $accountName }}
@endif
</body>
</html>