mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
20 lines
552 B
PHP
20 lines
552 B
PHP
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
</head>
|
|
<body>
|
|
@if (false)
|
|
@include('emails.view_action', ['link' => $invoiceLink, 'entityType' => $entityType])
|
|
@endif
|
|
{{ trans('texts.email_salutation', ['name' => $userName]) }} <p/>
|
|
|
|
{{ trans("texts.notification_{$entityType}_approved", ['amount' => $invoiceAmount, 'client' => $clientName, 'invoice' => $invoiceNumber]) }} <p/>
|
|
|
|
{{ trans('texts.email_signature') }} <br/>
|
|
{{ trans('texts.email_from') }} <p/>
|
|
|
|
{{ trans('texts.user_email_footer') }} <p/>
|
|
|
|
</body>
|
|
</html> |