Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.116.170.100
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
vendor /
symfony /
mailer /
Delete
Unzip
Name
Size
Permission
Date
Action
DataCollector
[ DIR ]
drwxrwxr-x
2022-08-03 05:17
Event
[ DIR ]
drwxrwxr-x
2022-08-03 05:17
EventListener
[ DIR ]
drwxrwxr-x
2022-08-03 05:17
Exception
[ DIR ]
drwxrwxr-x
2022-08-03 05:17
Header
[ DIR ]
drwxrwxr-x
2022-08-03 05:17
Messenger
[ DIR ]
drwxrwxr-x
2022-08-03 05:17
Test
[ DIR ]
drwxrwxr-x
2022-08-03 05:17
Transport
[ DIR ]
drwxrwxr-x
2022-08-03 05:17
CHANGELOG.md
2.32
KB
-rw-rw-r--
2022-08-03 05:17
DelayedEnvelope.php
2.38
KB
-rw-rw-r--
2022-08-03 05:17
Envelope.php
2.55
KB
-rw-rw-r--
2022-08-03 05:17
LICENSE
1.04
KB
-rw-rw-r--
2022-08-03 05:17
Mailer.php
2.94
KB
-rw-rw-r--
2022-08-03 05:17
MailerInterface.php
763
B
-rw-rw-r--
2022-08-03 05:17
README.md
2.08
KB
-rw-rw-r--
2022-08-03 05:17
SentMessage.php
2.02
KB
-rw-rw-r--
2022-08-03 05:17
Transport.php
7.7
KB
-rw-rw-r--
2022-08-03 05:17
composer.json
1.18
KB
-rw-rw-r--
2022-08-03 05:17
Save
Rename
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Mailer; use Symfony\Component\Mime\Message; use Symfony\Component\Mime\RawMessage; /** * @author Fabien Potencier <fabien@symfony.com> */ class SentMessage { private $original; private $raw; private $envelope; private $messageId; private $debug = ''; /** * @internal */ public function __construct(RawMessage $message, Envelope $envelope) { $message->ensureValidity(); $this->original = $message; $this->envelope = $envelope; if ($message instanceof Message) { $message = clone $message; $headers = $message->getHeaders(); if (!$headers->has('Message-ID')) { $headers->addIdHeader('Message-ID', $message->generateMessageId()); } $this->messageId = $headers->get('Message-ID')->getId(); $this->raw = new RawMessage($message->toIterable()); } else { $this->raw = $message; } } public function getMessage(): RawMessage { return $this->raw; } public function getOriginalMessage(): RawMessage { return $this->original; } public function getEnvelope(): Envelope { return $this->envelope; } public function setMessageId(string $id): void { $this->messageId = $id; } public function getMessageId(): string { return $this->messageId; } public function getDebug(): string { return $this->debug; } public function appendDebug(string $debug): void { $this->debug .= $debug; } public function toString(): string { return $this->raw->toString(); } public function toIterable(): iterable { return $this->raw->toIterable(); } }