1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 01:11:34 +02:00
invoiceninja/app/Mail/Import/ImportCompleted.php

83 lines
2.6 KiB
PHP
Raw Normal View History

2020-12-21 02:16:26 +01:00
<?php
2021-06-09 16:47:11 +02:00
2021-05-12 08:18:32 +02:00
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2023-01-28 23:21:40 +01:00
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
2021-05-12 08:18:32 +02:00
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2021-05-12 08:18:32 +02:00
*/
2020-12-21 02:16:26 +01:00
namespace App\Mail\Import;
2021-06-09 16:47:11 +02:00
use App\Models\Company;
2021-11-08 23:08:27 +01:00
use App\Utils\Ninja;
2020-12-21 02:16:26 +01:00
use Illuminate\Bus\Queueable;
use Illuminate\Mail\Mailable;
use Illuminate\Queue\SerializesModels;
2021-11-08 23:08:27 +01:00
use Illuminate\Support\Facades\App;
2020-12-21 02:16:26 +01:00
class ImportCompleted extends Mailable
{
// use Queueable, SerializesModels;
2020-12-21 02:16:26 +01:00
2021-06-09 16:47:11 +02:00
/** @var Company */
public $company;
2020-12-21 02:16:26 +01:00
/**
* Create a new message instance.
*
* @return void
*/
public $data;
2021-06-09 16:47:11 +02:00
public function __construct(Company $company, $data)
2020-12-21 02:16:26 +01:00
{
2021-06-09 16:47:11 +02:00
$this->company = $company;
2020-12-21 02:16:26 +01:00
$this->data = $data;
}
/**
* Build the message.
*
* @return $this
*/
public function build()
{
2021-11-08 23:08:27 +01:00
App::forgetInstance('translator');
2022-01-15 05:58:33 +01:00
App::setLocale($this->company->getLocale());
2021-11-08 23:08:27 +01:00
$t = app('translator');
$t->replace(Ninja::transformTranslations($this->company->settings));
2021-06-09 16:47:11 +02:00
$data = array_merge($this->data, [
'logo' => $this->company->present()->logo(),
'settings' => $this->company->settings,
2021-06-12 23:14:28 +02:00
'company' => $this->company,
'client_count' => $this->company->clients()->count(),
'product_count' => $this->company->products()->count(),
'invoice_count' => $this->company->invoices()->count(),
'quote_count' => $this->company->quotes()->count(),
'credit_count' => $this->company->credits()->count(),
'project_count' => $this->company->projects()->count(),
'task_count' => $this->company->tasks()->count(),
'vendor_count' => $this->company->vendors()->count(),
'payment_count' => $this->company->payments()->count(),
'recurring_invoice_count' => $this->company->recurring_invoices()->count(),
'expense_count' => $this->company->expenses()->count(),
'company_gateway_count' => $this->company->company_gateways()->count(),
'client_gateway_token_count' => $this->company->client_gateway_tokens()->count(),
'tax_rate_count' => $this->company->tax_rates()->count(),
'document_count' => $this->company->documents()->count(),
2023-06-11 14:59:06 +02:00
'url' => Ninja::isHosted() ? config('ninja.react_url') : config('ninja.app_url'),
2021-06-09 16:47:11 +02:00
]);
return $this
->from(config('mail.from.address'), config('mail.from.name'))
->view('email.import.completed', $data);
2020-12-21 02:16:26 +01:00
}
}