mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
3d31f810c0
* Working on importing company gateways * Fix for companyuser settings object * Migrate client_gateway_tokens * Working on Notificaitons * Working on notifications * Failsafe for user-company * unlink files * Set DB for jobs * Always have a fallback for company_id * Fixes for user model * Formatting for MultiDB * Working on Company Ledger Tests * Fixes for contact request * Set Invitations as a default include for invoices
49 lines
1.2 KiB
PHP
49 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace App\Mail;
|
|
|
|
use App\Models\Company;
|
|
use App\Utils\Ninja;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Mail\Mailable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class DownloadInvoices extends Mailable
|
|
{
|
|
use Queueable, SerializesModels;
|
|
|
|
public $file_path;
|
|
|
|
public $company;
|
|
|
|
public function __construct($file_path, Company $company)
|
|
{
|
|
$this->file_path = $file_path;
|
|
|
|
$this->company = $company;
|
|
}
|
|
|
|
/**
|
|
* Build the message.
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function build()
|
|
{
|
|
|
|
return $this->subject(ctrans('texts.download_files'))
|
|
->markdown('email.admin.download_files',
|
|
[
|
|
'url' => $this->file_path,
|
|
'logo' => $this->company->present()->logo,
|
|
]);
|
|
|
|
// return $this->from(config('mail.from.address')) //todo this needs to be fixed to handle the hosted version
|
|
// ->subject(ctrans('texts.download_documents',['size'=>'']))
|
|
// ->markdown('email.admin.download_files', [
|
|
// 'file_path' => $this->file_path
|
|
// ]);
|
|
}
|
|
}
|