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

21 lines
523 B
PHP
Raw Normal View History

2014-01-29 11:41:38 +01:00
<!DOCTYPE html>
2014-04-02 14:28:23 +02:00
<html>
2014-01-29 11:41:38 +01:00
<head>
<meta charset="utf-8">
</head>
<body>
2014-04-02 14:28:23 +02:00
{{ trans('texts.email_salutation', ['name' => $userName]) }} <p/>
2014-01-29 11:41:38 +01:00
2014-05-20 23:40:09 +02:00
{{ trans("texts.notification_{$entityType}_paid", ['amount' => $paymentAmount, 'client' => $clientName, 'invoice' => $invoiceNumber]) }} <p/>
2014-01-29 11:41:38 +01:00
2014-05-20 23:40:09 +02:00
{{ trans("texts.{$entityType}_link_message") }} <br/>
2014-01-29 11:41:38 +01:00
{{ $invoiceLink }} <p/>
2014-04-02 14:28:23 +02:00
{{ trans('texts.email_signature') }} <br/>
{{ trans('texts.email_from') }} <p/>
{{ trans('texts.user_email_footer') }} <p/>
2014-03-17 11:04:44 +01:00
2014-01-29 11:41:38 +01:00
</body>
</html>