mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 11:27:34 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			39 lines
		
	
	
		
			911 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			911 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\Services\Payment;
 | |
| 
 | |
| use App\Jobs\Payment\EmailPayment;
 | |
| use App\Models\ClientContact;
 | |
| use App\Models\Payment;
 | |
| 
 | |
| class SendEmail
 | |
| {
 | |
|     public function __construct(public Payment $payment, public ?ClientContact $contact)
 | |
|     {
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Builds the correct template to send.
 | |
|      */
 | |
|     public function run()
 | |
|     {
 | |
|         $this->payment->load('company', 'client.contacts', 'invoices');
 | |
| 
 | |
|         if (!$this->contact) {
 | |
|             $this->contact = $this->payment->client->contacts()->first();
 | |
|         }
 | |
| 
 | |
|         EmailPayment::dispatch($this->payment, $this->payment->company, $this->contact);
 | |
|         
 | |
|     }
 | |
| }
 |