2021-06-07 23:23:20 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2024-04-12 06:15:41 +02:00
|
|
|
* @copyright Copyright (c) 2024. Invoice Ninja LLC (https://invoiceninja.com)
|
2021-06-07 23:23:20 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2021-06-07 23:23:20 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Mail\Import;
|
|
|
|
|
|
|
|
use Illuminate\Bus\Queueable;
|
|
|
|
use Illuminate\Mail\Mailable;
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
2022-01-15 05:07:40 +01:00
|
|
|
use Illuminate\Support\Facades\App;
|
2021-06-07 23:23:20 +02:00
|
|
|
|
|
|
|
class CompanyImportFailure extends Mailable
|
|
|
|
{
|
|
|
|
// use Queueable, SerializesModels;
|
|
|
|
|
|
|
|
public $company;
|
|
|
|
|
|
|
|
public $settings;
|
|
|
|
|
|
|
|
public $logo;
|
|
|
|
|
|
|
|
public $title;
|
|
|
|
|
|
|
|
public $message;
|
|
|
|
|
|
|
|
public $whitelabel;
|
|
|
|
|
|
|
|
public $user_message;
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2021-06-07 23:23:20 +02:00
|
|
|
/**
|
|
|
|
* Create a new message instance.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function __construct($company, $user_message)
|
|
|
|
{
|
|
|
|
$this->company = $company;
|
|
|
|
$this->user_message = $user_message;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Build the message.
|
|
|
|
*
|
|
|
|
* @return $this
|
|
|
|
*/
|
|
|
|
public function build()
|
|
|
|
{
|
2022-01-15 05:07:40 +01:00
|
|
|
App::setLocale($this->company->getLocale());
|
|
|
|
|
2021-06-07 23:23:20 +02:00
|
|
|
$this->settings = $this->company->settings;
|
|
|
|
$this->logo = $this->company->present()->logo();
|
2021-06-08 02:42:48 +02:00
|
|
|
$this->title = ctrans('texts.company_import_failure_subject', ['company' => $this->company->present()->name()]);
|
2021-06-07 23:23:20 +02:00
|
|
|
$this->whitelabel = $this->company->account->isPaid();
|
|
|
|
|
|
|
|
return $this->from(config('mail.from.address'), config('mail.from.name'))
|
2021-06-08 02:42:48 +02:00
|
|
|
->subject(ctrans('texts.company_import_failure_subject', ['company' => $this->company->present()->name()]))
|
2022-03-04 04:08:29 +01:00
|
|
|
->text('email.import.import_failure_text')
|
2021-06-08 03:02:32 +02:00
|
|
|
->view('email.import.import_failure', ['user_message' => $this->user_message, 'title' => $this->title]);
|
2021-06-07 23:23:20 +02:00
|
|
|
}
|
|
|
|
}
|