whoami7 - Manager
:
/
home
/
qbizpnmr
/
arif.umairtax.com
/
app
/
Mail
/
User
/
Upload File:
files >> /home/qbizpnmr/arif.umairtax.com/app/Mail/User/UserAdded.php
<?php /** * Invoice Ninja (https://invoiceninja.com). * * @link https://github.com/invoiceninja/invoiceninja source repository * * @copyright Copyright (c) 2025. Invoice Ninja LLC (https://invoiceninja.com) * * @license https://www.elastic.co/licensing/elastic-license */ namespace App\Mail\User; use Illuminate\Bus\Queueable; use Illuminate\Mail\Mailable; use Illuminate\Queue\SerializesModels; use Illuminate\Support\Facades\App; class UserAdded extends Mailable { // use Queueable, SerializesModels; public $company; public $user; public $created_user; /** * Create a new message instance. * * @return void */ public function __construct($company, $user, $created_user) { $this->company = $company; $this->user = $user; $this->created_user = $created_user; } /** * Build the message. * * @return $this */ public function build() { App::setLocale($this->company->getLocale()); return $this->from(config('mail.from.address'), config('mail.from.name')) ->subject(ctrans('texts.created_user')) ->text('email.admin.user_added_text') ->view('email.admin.user_added') ->with([ 'settings' => $this->company->settings, 'logo' => $this->company->present()->logo(), 'title' => ctrans('texts.created_user'), 'body' => ctrans('texts.user_created_user', ['user' => $this->user->present()->name(), 'created_user' => $this->created_user->present()->name(), 'time' => now()]), 'whitelabel' => $this->company->account->isPaid(), ]); } }
Copyright ©2021 || Defacer Indonesia