2020-02-17 10:37:44 +01:00
|
|
|
<?php
|
2022-03-02 03:51:38 +01: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)
|
2022-03-02 03:51:38 +01:00
|
|
|
*
|
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
|
|
*/
|
2020-02-17 10:37:44 +01:00
|
|
|
|
|
|
|
namespace App\Mail;
|
|
|
|
|
2020-02-24 11:15:30 +01:00
|
|
|
use App\Models\Company;
|
2020-02-17 10:37:44 +01:00
|
|
|
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;
|
2020-02-17 10:37:44 +01:00
|
|
|
|
|
|
|
class DownloadInvoices extends Mailable
|
|
|
|
{
|
2021-02-11 13:35:46 +01:00
|
|
|
// use Queueable, SerializesModels;
|
2020-02-17 10:37:44 +01:00
|
|
|
|
|
|
|
public $file_path;
|
|
|
|
|
2020-02-24 11:15:30 +01:00
|
|
|
public $company;
|
|
|
|
|
|
|
|
public function __construct($file_path, Company $company)
|
2020-02-17 10:37:44 +01:00
|
|
|
{
|
|
|
|
$this->file_path = $file_path;
|
2020-02-24 11:15:30 +01:00
|
|
|
|
|
|
|
$this->company = $company;
|
2020-02-17 10:37:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Build the message.
|
|
|
|
*/
|
|
|
|
public function build()
|
|
|
|
{
|
2022-01-15 05:07:40 +01:00
|
|
|
App::setLocale($this->company->getLocale());
|
|
|
|
|
2020-12-03 12:00:34 +01:00
|
|
|
return $this->from(config('mail.from.address'), config('mail.from.name'))
|
2021-06-07 18:02:44 +02:00
|
|
|
->subject(ctrans('texts.download_files'))
|
2022-03-04 03:08:18 +01:00
|
|
|
->text('email.admin.download_invoices_text', [
|
|
|
|
'url' => $this->file_path,
|
|
|
|
])
|
2021-06-09 17:14:27 +02:00
|
|
|
->view('email.admin.download_invoices', [
|
2021-06-07 18:02:44 +02:00
|
|
|
'url' => $this->file_path,
|
|
|
|
'logo' => $this->company->present()->logo,
|
2021-06-09 17:14:27 +02:00
|
|
|
'whitelabel' => $this->company->account->isPaid() ? true : false,
|
|
|
|
'settings' => $this->company->settings,
|
|
|
|
'greeting' => $this->company->present()->name(),
|
2021-06-07 18:02:44 +02:00
|
|
|
]);
|
2020-02-17 10:37:44 +01:00
|
|
|
}
|
|
|
|
}
|