mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 15:47:32 -04:00 
			
		
		
		
	* Fixes for tests * payment terms policies and repo * Bulk actions for payment terms * Fixes for documentation * working on payment failure mailer
		
			
				
	
	
		
			90 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			90 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Jobs\Mail;
 | |
| 
 | |
| use App\Jobs\Util\SystemLogger;
 | |
| use App\Libraries\Google\Google;
 | |
| use App\Libraries\MultiDB;
 | |
| use App\Mail\Admin\EntityNotificationMailer;
 | |
| use App\Mail\Admin\EntityPaidObject;
 | |
| use App\Mail\Admin\EntitySentObject;
 | |
| use App\Models\SystemLog;
 | |
| use App\Models\User;
 | |
| use App\Providers\MailServiceProvider;
 | |
| use Illuminate\Bus\Queueable;
 | |
| use Illuminate\Contracts\Queue\ShouldQueue;
 | |
| use Illuminate\Foundation\Bus\Dispatchable;
 | |
| use Illuminate\Queue\InteractsWithQueue;
 | |
| use Illuminate\Queue\SerializesModels;
 | |
| use Illuminate\Support\Facades\Config;
 | |
| use Illuminate\Support\Facades\Mail;
 | |
| 
 | |
| class EntityPaidMailer extends BaseMailerJob implements ShouldQueue
 | |
| {
 | |
|     use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
 | |
| 
 | |
|     public $company;
 | |
| 
 | |
|     public $user;
 | |
| 
 | |
|     public $payment;
 | |
| 
 | |
|     public $entity_type;
 | |
| 
 | |
|     public $entity;
 | |
|     /**
 | |
|      * Create a new job instance.
 | |
|      *
 | |
|      * @return void
 | |
|      */
 | |
|     public function __construct($payment, $user, $company)
 | |
|     {
 | |
|         $this->company = $company;
 | |
| 
 | |
|         $this->user = $user;
 | |
| 
 | |
|         $this->payment = $payment;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Execute the job.
 | |
|      *
 | |
|      * @return void
 | |
|      */
 | |
|     public function handle()
 | |
|     {
 | |
|         info("entity paid mailer");
 | |
|         //Set DB
 | |
|         MultiDB::setDb($this->company->db);
 | |
| 
 | |
|         //if we need to set an email driver do it now
 | |
|         $this->setMailDriver($this->payment->client->getSetting('email_sending_method'));
 | |
| 
 | |
|         $mail_obj = (new EntityPaidObject($this->payment))->build();
 | |
|         $mail_obj->from = [$this->payment->user->email, $this->payment->user->present()->name()];
 | |
|         
 | |
|         //send email
 | |
|         Mail::to($this->user->email)
 | |
|             ->send(new EntityNotificationMailer($mail_obj));
 | |
| 
 | |
|         //catch errors
 | |
|         if (count(Mail::failures()) > 0) {
 | |
|             $this->logMailError(Mail::failures());
 | |
|         }
 | |
| 
 | |
|     }
 | |
| 
 | |
|     private function logMailError($errors)
 | |
|     {
 | |
|         SystemLogger::dispatch(
 | |
|             $errors,
 | |
|             SystemLog::CATEGORY_MAIL,
 | |
|             SystemLog::EVENT_MAIL_SEND,
 | |
|             SystemLog::TYPE_FAILURE,
 | |
|             $this->payment->client
 | |
|         );
 | |
|     }
 | |
| 
 | |
| 
 | |
| }
 |