mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-30 21:02:55 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			42 lines
		
	
	
		
			714 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			714 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * Invoice Ninja (https://invoiceninja.com).
 | |
|  *
 | |
|  * @link https://github.com/invoiceninja/invoiceninja source repository
 | |
|  *
 | |
|  * @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
 | |
|  *
 | |
|  * @license https://www.elastic.co/licensing/elastic-license
 | |
|  */
 | |
| 
 | |
| namespace App\Jobs\Mail;
 | |
| 
 | |
| /**
 | |
|  * NinjaMailerObject.
 | |
|  */
 | |
| class NinjaMailerObject
 | |
| {
 | |
| 
 | |
|     public $mailable;
 | |
| 
 | |
|     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;
 | |
| 
 | |
|     public $invitation = FALSE;
 | |
| 
 | |
|     public $template = FALSE;
 | |
| 
 | |
|     public $entity = FALSE;
 | |
|     
 | |
| }
 |