1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 00:11:35 +02:00
invoiceninja/app/Mail/ContactPasswordlessLogin.php
2024-04-12 14:15:41 +10:00

65 lines
1.5 KiB
PHP

<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2024. 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,
]);
}
}