1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 13:12:50 +01:00

QuoteWasApproved

This commit is contained in:
Benjamin Beganović 2021-06-12 23:17:43 +02:00
parent 8493b2e4d6
commit fef1c604bc
2 changed files with 7 additions and 9 deletions

View File

@ -4262,6 +4262,8 @@ $LANG = array(
'migration_failed_label' => 'Migration failed',
'migration_failed' => 'Looks like something went wrong with the migration for the following company:',
'client_email_company_contact_label' => 'If you have any questions please contact us, we\'re here to help!',
'quote_was_approved_label' => 'Quote was approved',
'quote_was_approved' => 'We would like to inform you that quote was approved.',
);
return $LANG;

View File

@ -1,10 +1,6 @@
@component('email.template.master', ['design' => 'light', 'settings' => $settings])
@slot('header')
@include('email.components.header', ['logo' => 'https://www.invoiceninja.com/wp-content/uploads/2015/10/logo-white-horizontal-1.png'])
@endslot
<h1>Quote approved!</h1>
<p>We want to inform you that quote was approved.</p>
<a href="https://invoiceninja.com" target="_blank" class="button">Visit Invoice Ninja</a>
@component('email.template.admin', ['settings' => $settings])
<div class="center">
<h1>{{ ctrans('texts.quote_was_approved') }}</h1>
<p>{{ ctrans('texts.quote_was_approved') }}</p>
</div>
@endcomponent