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

59 lines
1.2 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
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
*
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;
2020-12-21 02:16:26 +01:00
use Illuminate\Bus\Queueable;
use Illuminate\Mail\Mailable;
use Illuminate\Queue\SerializesModels;
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-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
}
}