mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
22 lines
387 B
PHP
Executable File
22 lines
387 B
PHP
Executable File
<!DOCTYPE html>
|
|
<html lang="en-US">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
</head>
|
|
<body>
|
|
|
|
{{ $clientName }},<p/>
|
|
|
|
To view your invoice for {{ $invoiceAmount }}, click the link below:<p/>
|
|
|
|
{{ $link }}<p/>
|
|
|
|
@if ($emailFooter)
|
|
{{ nl2br($emailFooter) }}
|
|
@else
|
|
Best regards,<br/>
|
|
{{ $accountName }}
|
|
@endif
|
|
|
|
</body>
|
|
</html> |