mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-30 20:12:58 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			46 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * Invoice Ninja (https://invoiceninja.com).
 | |
|  *
 | |
|  * @link https://github.com/invoiceninja/invoiceninja source repository
 | |
|  *
 | |
|  * @copyright Copyright (c) 2024. Invoice Ninja LLC (https://invoiceninja.com)
 | |
|  *
 | |
|  * @license https://www.elastic.co/licensing/elastic-license
 | |
|  */
 | |
| 
 | |
| namespace App\Jobs\Mail;
 | |
| 
 | |
| /**
 | |
|  * NinjaMailerObject.
 | |
|  */
 | |
| class NinjaMailerObject
 | |
| {
 | |
|     /* @var Illuminate\Mail\Mailable */
 | |
|     public $mailable;
 | |
| 
 | |
|     /* @var Company $company */
 | |
|     public $company;
 | |
| 
 | |
|     public $from_user; //not yet used
 | |
| 
 | |
|     public $to_user;
 | |
| 
 | |
|     public $settings;
 | |
| 
 | |
|     public $transport; //not yet used
 | |
| 
 | |
|     /* Variable for cascading notifications */
 | |
|     public $entity_string = false;
 | |
| 
 | |
|     /* @var App\Models\InvoiceInvitation | App\Models\QuoteInvitation | App\Models\CreditInvitation | App\Models\RecurringInvoiceInvitation | App\Models\PurchaseOrderInvitation | \bool $invitation*/
 | |
|     public $invitation = false;
 | |
| 
 | |
|     public $template = false;
 | |
| 
 | |
|     /* @var bool | App\Models\Invoice | App\Models\Quote | App\Models\Credit | App\Models\RecurringInvoice | App\Models\PurchaseOrder  | App\Models\Payment $entity */
 | |
|     public $entity = false;
 | |
| 
 | |
|     public $reminder_template = '';
 | |
| }
 |