1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/views/emails/payment_confirmation_html.blade.php
Hillel Coren af37de4feb bug fixes
2014-02-19 15:28:29 +02:00

20 lines
347 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)
{{ nl2br($emailFooter) }}
@else
Best regards,<br/>
{{ $accountName }}
@endif
</body>
</html>