2021-05-04 04:40:28 +02:00
|
|
|
<?php
|
2021-05-12 08:18:32 +02:00
|
|
|
/**
|
|
|
|
* 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-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
|
|
|
*/
|
2021-05-04 04:40:28 +02:00
|
|
|
|
|
|
|
namespace App\Mail\Migration;
|
|
|
|
|
|
|
|
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-05-04 04:40:28 +02:00
|
|
|
|
|
|
|
class MaxCompanies extends Mailable
|
|
|
|
{
|
|
|
|
// use Queueable, SerializesModels;
|
|
|
|
|
|
|
|
public $company;
|
|
|
|
|
|
|
|
public $settings;
|
|
|
|
|
|
|
|
public $logo;
|
|
|
|
|
|
|
|
public $title;
|
|
|
|
|
2024-01-29 07:45:22 +01:00
|
|
|
// public $message;
|
2021-05-04 04:40:28 +02:00
|
|
|
|
|
|
|
public $whitelabel;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new message instance.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function __construct($company)
|
|
|
|
{
|
|
|
|
$this->company = $company;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Build the message.
|
|
|
|
*
|
|
|
|
* @return $this
|
|
|
|
*/
|
|
|
|
public function build()
|
|
|
|
{
|
2022-01-15 05:07:40 +01:00
|
|
|
App::setLocale($this->company->getLocale());
|
|
|
|
|
2021-05-04 04:40:28 +02:00
|
|
|
$this->settings = $this->company->settings;
|
|
|
|
$this->logo = $this->company->present()->logo();
|
|
|
|
$this->title = ctrans('texts.max_companies');
|
2024-01-29 07:45:22 +01:00
|
|
|
// $this->message = ctrans('texts.max_companies_desc');
|
2021-05-04 04:40:28 +02:00
|
|
|
$this->whitelabel = $this->company->account->isPaid();
|
|
|
|
|
|
|
|
return $this->from(config('mail.from.address'), config('mail.from.name'))
|
2021-05-12 08:18:32 +02:00
|
|
|
->subject(ctrans('texts.max_companies'))
|
2021-05-04 04:40:28 +02:00
|
|
|
->view('email.migration.max_companies');
|
|
|
|
}
|
|
|
|
}
|