mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 11:57:33 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			56 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			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://opensource.org/licenses/AAL
 | |
|  */
 | |
| 
 | |
| namespace App\Listeners;
 | |
| 
 | |
| use App\Libraries\MultiDB;
 | |
| use App\Notifications\Ninja\VerifyUser;
 | |
| use App\Utils\Ninja;
 | |
| use Exception;
 | |
| use Illuminate\Broadcasting\InteractsWithSockets;
 | |
| use Illuminate\Contracts\Queue\ShouldQueue;
 | |
| use Illuminate\Foundation\Events\Dispatchable;
 | |
| use Illuminate\Queue\SerializesModels;
 | |
| 
 | |
| class SendVerificationNotification implements ShouldQueue
 | |
| {
 | |
|     use Dispatchable, InteractsWithSockets, SerializesModels;
 | |
| 
 | |
|     /**
 | |
|      * Create the event listener.
 | |
|      *
 | |
|      * @return void
 | |
|      */
 | |
|     public function __construct()
 | |
|     {
 | |
|         //
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Handle the event.
 | |
|      *
 | |
|      * @param  object  $event
 | |
|      * @return void
 | |
|      */
 | |
|     public function handle($event)
 | |
|     {
 | |
|         MultiDB::setDB($event->company->db);
 | |
| 
 | |
|         try {
 | |
|             $event->user->notify(new VerifyUser($event->user, $event->company));
 | |
| 
 | |
|             Ninja::registerNinjaUser($event->user);
 | |
|         } catch (Exception $e) {
 | |
|             nlog("I couldn't send the email " . $e->getMessage());
 | |
|         }
 | |
|     }
 | |
| }
 |