invoiceninja/app/views/emails/invoice_viewed_html.blade.php

18 lines
449 B
PHP
Raw Normal View History

2014-01-29 12:41:38 +02:00
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
</head>
<body>
2014-04-02 15:28:23 +03:00
{{ trans('texts.email_salutation', ['name' => $userName]) }} <p/>
2014-01-29 12:41:38 +02:00
2014-05-21 00:40:09 +03:00
{{ trans("texts.notification_{$entityType}_viewed", ['amount' => $invoiceAmount, 'client' => $clientName, 'invoice' => $invoiceNumber]) }} <p/>
2014-01-29 12:41:38 +02:00
2014-04-02 15:28:23 +03:00
{{ trans('texts.email_signature') }} <br/>
{{ trans('texts.email_from') }} <p/>
{{ trans('texts.user_email_footer') }} <p/>
2014-01-29 12:41:38 +02:00
</body>
</html>