mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
65 lines
1.5 KiB
PHP
65 lines
1.5 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
*/
|
|
|
|
namespace App\Mail;
|
|
|
|
use App\Models\Company;
|
|
use App\Utils\ClientPortal\MagicLink;
|
|
use Illuminate\Mail\Mailable;
|
|
use Illuminate\Support\Facades\App;
|
|
|
|
class ContactPasswordlessLogin extends Mailable
|
|
{
|
|
/** @var string */
|
|
public $email;
|
|
|
|
/** @var string */
|
|
public $url;
|
|
|
|
/** @var Company */
|
|
public $company;
|
|
|
|
/**
|
|
* Create a new message instance.
|
|
*
|
|
* @param string $email
|
|
* @param string $redirect
|
|
*/
|
|
public function __construct(string $email, Company $company, string $redirect = '')
|
|
{
|
|
$this->email = $email;
|
|
|
|
$this->company = $company;
|
|
|
|
$this->url = MagicLink::create($email, $company->id, $redirect);
|
|
}
|
|
|
|
/**
|
|
* Build the message.
|
|
*
|
|
* @return $this
|
|
*/
|
|
public function build()
|
|
{
|
|
App::setLocale($this->company->getLocale());
|
|
|
|
return $this
|
|
->subject(ctrans('texts.account_passwordless_login'))
|
|
->text('email.billing.passwordless-login_text')
|
|
->view('email.billing.passwordless-login', [
|
|
'logo' => $this->company->present()->logo(),
|
|
'settings' => $this->company->settings,
|
|
'company' => $this->company->settings,
|
|
]);
|
|
}
|
|
}
|