mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-05-31 08:24:35 -04:00
66 lines
1.6 KiB
PHP
66 lines
1.6 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://www.elastic.co/licensing/elastic-license
|
|
*/
|
|
|
|
namespace App\Listeners;
|
|
|
|
use App\Jobs\Mail\NinjaMailer;
|
|
use App\Jobs\Mail\NinjaMailerJob;
|
|
use App\Jobs\Mail\NinjaMailerObject;
|
|
use App\Libraries\MultiDB;
|
|
use App\Mail\Admin\VerifyUserObject;
|
|
use App\Mail\User\UserAdded;
|
|
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)
|
|
{
|
|
nlog("In Send Verification Notification");
|
|
|
|
MultiDB::setDB($event->company->db);
|
|
|
|
$event->user->service()->invite($event->company);
|
|
|
|
$nmo = new NinjaMailerObject;
|
|
$nmo->mailable = new UserAdded($event->company, $event->creating_user, $event->user);
|
|
$nmo->company = $event->company;
|
|
$nmo->settings = $event->company->settings;
|
|
$nmo->to_user = $event->creating_user;
|
|
NinjaMailerJob::dispatch($nmo);
|
|
|
|
|
|
}
|
|
}
|