1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-14 23:22:52 +01:00
invoiceninja/app/views/emails/invoice_sent_html.blade.php

18 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>
@include('emails.view_action', ['link' => $invoiceLink, 'entityType' => $entityType])
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}_sent", ['amount' => $invoiceAmount, 'client' => $clientName, 'invoice' => $invoiceNumber]) }} <p/>
2014-01-29 11:41:38 +01:00
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-01-29 11:41:38 +01:00
</body>
</html>