2021-02-14 11:43:44 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2021-02-14 11:43:44 +01:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2021-02-14 11:43:44 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Jobs\Mail;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* NinjaMailerObject.
|
|
|
|
*/
|
|
|
|
class NinjaMailerObject
|
|
|
|
{
|
|
|
|
public $mailable;
|
|
|
|
|
2023-01-29 06:19:20 +01:00
|
|
|
/* @var Company $company */
|
2021-02-14 11:43:44 +01:00
|
|
|
public $company;
|
|
|
|
|
|
|
|
public $from_user; //not yet used
|
|
|
|
|
|
|
|
public $to_user;
|
|
|
|
|
|
|
|
public $settings;
|
|
|
|
|
|
|
|
public $transport; //not yet used
|
|
|
|
|
2021-02-16 13:56:12 +01:00
|
|
|
/* Variable for cascading notifications */
|
2022-06-21 11:57:17 +02:00
|
|
|
public $entity_string = false;
|
2021-02-16 13:56:12 +01:00
|
|
|
|
2023-10-18 08:28:10 +02:00
|
|
|
/* @var bool | App\Models\InvoiceInvitation | App\Models\QuoteInvitation | App\Models\CreditInvitation | App\Models\RecurringInvoiceInvitation | App\Models\PurchaseOrderInvitation $invitation*/
|
2022-06-21 11:57:17 +02:00
|
|
|
public $invitation = false;
|
2021-02-16 13:56:12 +01:00
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
public $template = false;
|
2021-02-18 00:30:31 +01:00
|
|
|
|
2023-10-18 08:28:10 +02:00
|
|
|
/* @var bool | App\Models\Invoice | App\Models\Quote | App\Models\Credit | App\Models\RecurringInvoice | App\Models\PurchaseOrder | App\Models\Payment $entity*/
|
2022-06-21 11:57:17 +02:00
|
|
|
public $entity = false;
|
2023-03-02 10:01:12 +01:00
|
|
|
|
|
|
|
public $reminder_template = '';
|
2021-02-14 11:43:44 +01:00
|
|
|
}
|