mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-04 00:27:32 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			37 lines
		
	
	
		
			703 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			703 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * Invoice Ninja (https://invoiceninja.com).
 | 
						|
 *
 | 
						|
 * @link https://github.com/invoiceninja/invoiceninja source repository
 | 
						|
 *
 | 
						|
 * @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
 | 
						|
 *
 | 
						|
 * @license https://www.elastic.co/licensing/elastic-license
 | 
						|
 */
 | 
						|
 | 
						|
namespace App\DataMapper;
 | 
						|
 | 
						|
/**
 | 
						|
 * EmailSpooledForSend.
 | 
						|
 *
 | 
						|
 * Stubbed class used to store the meta data
 | 
						|
 * for an email that was unable to be sent
 | 
						|
 * for a reason such as:
 | 
						|
 *
 | 
						|
 *  - Quota exceeded
 | 
						|
 *  - SMTP issues
 | 
						|
 *  - Upstream connectivity
 | 
						|
 */
 | 
						|
class EmailSpooledForSend
 | 
						|
{
 | 
						|
    public $entity_name;
 | 
						|
 | 
						|
    public $invitation_key = '';
 | 
						|
 | 
						|
    public $reminder_template = '';
 | 
						|
 | 
						|
    public $subject = '';
 | 
						|
 | 
						|
    public $body = '';
 | 
						|
}
 |