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

68 lines
1.5 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
*
2022-04-27 05:20:41 +02:00
* @copyright Copyright (c) 2022. 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,
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
}
}