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

18 lines
435 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>
2014-04-02 14:28:23 +02:00
{{ trans('texts.email_salutation', ['name' => $userName]) }} <p/>
2014-01-29 11:41:38 +01:00
2014-04-02 14:28:23 +02:00
{{ trans('texts.notification_viewed', ['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>