mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 21:52:35 +01:00
18 lines
536 B
PHP
18 lines
536 B
PHP
<!DOCTYPE html>
|
|
<html lang="en-US">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
</head>
|
|
<body>
|
|
@include('emails.view_action', ['link' => $invoiceLink, 'entityType' => $entityType])
|
|
{{ trans('texts.email_salutation', ['name' => $userName]) }} <p/>
|
|
|
|
{{ trans("texts.notification_{$entityType}_viewed", ['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> |