mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
100 lines
2.9 KiB
PHP
100 lines
2.9 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\Jobs\User;
|
|
|
|
use App\Jobs\Mail\BaseMailerJob;
|
|
use App\Jobs\Util\SystemLogger;
|
|
use App\Libraries\MultiDB;
|
|
use App\Mail\User\UserNotificationMailer;
|
|
use App\Models\Company;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
use Illuminate\Queue\SerializesModels;
|
|
use Illuminate\Support\Facades\Mail;
|
|
|
|
class UserEmailChanged extends BaseMailerJob implements ShouldQueue
|
|
{
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
|
|
protected $new_email;
|
|
|
|
protected $old_email;
|
|
|
|
protected $company;
|
|
|
|
public $settings;
|
|
|
|
/**
|
|
* Create a new job instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct(string $new_email, string $old_email, Company $company)
|
|
{
|
|
$this->new_email = $new_email;
|
|
$this->old_email = $old_email;
|
|
$this->company = $company;
|
|
$this->settings = $this->company->settings;
|
|
}
|
|
|
|
public function handle()
|
|
{
|
|
//Set DB
|
|
MultiDB::setDb($this->company->db);
|
|
|
|
//If we need to set an email driver do it now
|
|
$this->setMailDriver();
|
|
|
|
/*Build the object*/
|
|
$mail_obj = new \stdClass;
|
|
$mail_obj->subject = ctrans('texts.email_address_changed');
|
|
$mail_obj->markdown = 'email.admin.generic';
|
|
$mail_obj->from = [$this->company->owner()->email, $this->company->owner()->present()->name()];
|
|
$mail_obj->tag = $this->company->company_key;
|
|
$mail_obj->data = $this->getData();
|
|
|
|
//Send email via a Mailable class
|
|
Mail::to($this->old_email)
|
|
->send(new UserNotificationMailer($mail_obj));
|
|
|
|
Mail::to($this->new_email)
|
|
->send(new UserNotificationMailer($mail_obj));
|
|
|
|
//Catch errors and report.
|
|
if (count(Mail::failures()) > 0) {
|
|
return $this->logMailError(Mail::failures(), $this->company);
|
|
}
|
|
}
|
|
|
|
private function getData()
|
|
{
|
|
return [
|
|
'title' => ctrans('texts.email_address_changed'),
|
|
'message' => ctrans(
|
|
'texts.email_address_changed_message',
|
|
['old_email' => $this->old_email,
|
|
'new_email' => $this->new_email,
|
|
]
|
|
),
|
|
'url' => config('ninja.app_url'),
|
|
'button' => ctrans('texts.account_login'),
|
|
'signature' => $this->company->owner()->signature,
|
|
'logo' => $this->company->present()->logo(),
|
|
'settings' => $this->settings,
|
|
'whitelabel' => $this->client->user->account->isPaid() ? true : false,
|
|
];
|
|
}
|
|
}
|