2021-02-14 23:54:27 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2021-02-14 23:54:27 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Mail\ClientContact;
|
|
|
|
|
2021-06-29 11:46:40 +02:00
|
|
|
use App\Utils\Ninja;
|
|
|
|
use Illuminate\Support\Facades\App;
|
|
|
|
|
2021-02-14 23:54:27 +01:00
|
|
|
class ClientContactResetPasswordObject
|
|
|
|
{
|
|
|
|
|
|
|
|
public $client_contact;
|
|
|
|
|
|
|
|
public $token;
|
|
|
|
|
|
|
|
private $company;
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public function __construct($token, $client_contact)
|
|
|
|
{
|
|
|
|
$this->token = $token;
|
|
|
|
$this->client_contact = $client_contact;
|
|
|
|
$this->company = $client_contact->company;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function build()
|
|
|
|
{
|
|
|
|
|
2021-06-29 11:46:40 +02:00
|
|
|
App::forgetInstance('translator');
|
|
|
|
$t = app('translator');
|
|
|
|
App::setLocale($this->client_contact->preferredLocale());
|
|
|
|
$t->replace(Ninja::transformTranslations($this->client_contact->client->getMergedSettings()));
|
|
|
|
|
|
|
|
|
2021-02-14 23:54:27 +01:00
|
|
|
$data = [
|
|
|
|
'title' => ctrans('texts.your_password_reset_link'),
|
2021-06-09 16:09:09 +02:00
|
|
|
'content' => ctrans('texts.reset_password'),
|
2021-02-14 23:54:27 +01:00
|
|
|
'url' => route('client.password.reset', ['token' => $this->token, 'email' => $this->client_contact->email]),
|
|
|
|
'button' => ctrans('texts.reset'),
|
|
|
|
'signature' => $this->company->settings->email_signature,
|
|
|
|
'settings' => $this->company->settings,
|
2021-06-10 11:23:10 +02:00
|
|
|
'company' => $this->company,
|
2021-02-14 23:54:27 +01:00
|
|
|
'logo' => $this->company->present()->logo(),
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
$mail_obj = new \stdClass;
|
|
|
|
$mail_obj->subject = ctrans('texts.your_password_reset_link');
|
|
|
|
$mail_obj->data = $data;
|
2021-06-10 11:23:10 +02:00
|
|
|
$mail_obj->markdown = 'email.client.generic';
|
2021-02-14 23:54:27 +01:00
|
|
|
$mail_obj->tag = $this->company->company_key;
|
|
|
|
|
|
|
|
return $mail_obj;
|
|
|
|
}
|
2021-06-10 11:23:10 +02:00
|
|
|
}
|