diff --git a/app/lang/en/texts.php b/app/lang/en/texts.php index cc646ae887..211ca6629a 100644 --- a/app/lang/en/texts.php +++ b/app/lang/en/texts.php @@ -349,6 +349,7 @@ return array( 'specify_colors_label' => 'Select the colors used in the invoice', 'chart_builder' => 'Chart Builder', + 'ninja_email_footer' => 'Use :site to invoice your clients and get paid online for free!', ); diff --git a/app/views/emails/invoice_html.blade.php b/app/views/emails/invoice_html.blade.php index a8b8627b30..ebd9739d90 100755 --- a/app/views/emails/invoice_html.blade.php +++ b/app/views/emails/invoice_html.blade.php @@ -17,5 +17,8 @@ {{ $accountName }} @endif +

+ {{ trans('texts.ninja_email_footer', ['site' => 'Invoice Ninja']) }} + \ No newline at end of file diff --git a/app/views/emails/invoice_text.blade.php b/app/views/emails/invoice_text.blade.php index 16b24b83d2..920a9a1330 100755 --- a/app/views/emails/invoice_text.blade.php +++ b/app/views/emails/invoice_text.blade.php @@ -8,4 +8,7 @@ @else {{ trans('texts.email_signature') }} {{ $accountName }} -@endif \ No newline at end of file +@endif + +{{ trans('texts.ninja_email_footer', ['site' => 'Invoice Ninja']) }} +{{ SITE_URL }} \ No newline at end of file diff --git a/app/views/emails/payment_confirmation_html.blade.php b/app/views/emails/payment_confirmation_html.blade.php index 8ab71a0312..5eae6bbeea 100644 --- a/app/views/emails/payment_confirmation_html.blade.php +++ b/app/views/emails/payment_confirmation_html.blade.php @@ -16,5 +16,8 @@ {{ $accountName }} @endif +

+ {{ trans('texts.ninja_email_footer', ['site' => 'Invoice Ninja']) }} + \ No newline at end of file diff --git a/app/views/emails/payment_confirmation_text.blade.php b/app/views/emails/payment_confirmation_text.blade.php index b742efb5c1..30d6b69c5f 100644 --- a/app/views/emails/payment_confirmation_text.blade.php +++ b/app/views/emails/payment_confirmation_text.blade.php @@ -7,4 +7,7 @@ @else {{ trans('texts.email_signature') }} {{ $accountName }} -@endif \ No newline at end of file +@endif + +{{ trans('texts.ninja_email_footer', ['site' => 'Invoice Ninja']) }} +{{ SITE_URL }} \ No newline at end of file