mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
52 lines
1.3 KiB
PHP
52 lines
1.3 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://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\Mail\Admin;
|
|
|
|
class AccountCreatedObject
|
|
{
|
|
|
|
public $user;
|
|
|
|
public $company;
|
|
|
|
/**
|
|
*
|
|
*/
|
|
public function __construct($user, $company)
|
|
{
|
|
$this->user = $user;
|
|
$this->company = $company;
|
|
}
|
|
|
|
public function build()
|
|
{
|
|
|
|
$data = [
|
|
'title' => ctrans('texts.new_signup'),
|
|
'message' => ctrans('texts.new_signup_text', ['user' => $this->user->present()->name(), 'email' => $this->user->email, 'ip' => $this->user->ip]),
|
|
'url' => config('ninja.web_url'),
|
|
'button' => ctrans('texts.account_login'),
|
|
'signature' => $this->company->settings->email_signature,
|
|
'settings' => $this->company->settings,
|
|
'logo' => $this->company->present()->logo(),
|
|
];
|
|
|
|
|
|
$mail_obj = new \stdClass;
|
|
$mail_obj->subject = ctrans('texts.new_signup');
|
|
$mail_obj->data = $data;
|
|
$mail_obj->markdown = 'email.admin.generic';
|
|
$mail_obj->tag = $this->company->company_key;
|
|
|
|
return $mail_obj;
|
|
}
|
|
} |