invoiceninja/app/Mail/Import/CompanyImportFailure.php

68 lines
1.7 KiB
PHP
Raw Normal View History

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