1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/resources/views/emails/quote_approved_html.blade.php

32 lines
828 B
PHP
Raw Normal View History

2015-12-17 19:03:32 +01:00
@extends('emails.master_user')
2015-12-17 19:03:32 +01:00
@section('markup')
2017-01-12 14:12:02 +01:00
@if ($account->emailMarkupEnabled())
2015-12-17 19:03:32 +01:00
@include('emails.partials.user_view_action')
@endif
@stop
2015-12-17 19:03:32 +01:00
@section('body')
<div>
{{ trans('texts.email_salutation', ['name' => $userName]) }}
</div>
&nbsp;
<div>
{{ trans("texts.notification_quote_approved", ['amount' => $invoiceAmount, 'client' => $clientName, 'invoice' => $invoiceNumber]) }}
</div>
&nbsp;
<div>
<center>
@include('partials.email_button', [
'link' => $invoiceLink,
'field' => "view_{$entityType}",
'color' => '#0b4d78',
])
</center>
</div>
&nbsp;
<div>
{{ trans('texts.email_signature') }} <br/>
{{ trans('texts.email_from') }}
</div>
@stop