Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.217.117
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
v3.cesa.co.za /
vendor /
symfony /
mailer /
Delete
Unzip
Name
Size
Permission
Date
Action
Command
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
DataCollector
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Event
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
EventListener
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Exception
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Header
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Messenger
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Test
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
Transport
[ DIR ]
drwxrwxr-x
2026-08-17 03:12
.htaccess
237
B
-r-xr-xr-x
2026-08-17 03:12
CHANGELOG.md
3.3
KB
-rwxrwxr-x
2026-02-24 09:34
DelayedEnvelope.php
2.4
KB
-rwxrwxr-x
2026-02-24 09:34
Envelope.php
2.56
KB
-rwxrwxr-x
2026-02-24 09:34
LICENSE
1.04
KB
-rwxrwxr-x
2026-02-24 09:34
Mailer.php
2.82
KB
-rwxrwxr-x
2026-02-24 09:34
MailerInterface.php
768
B
-rwxrwxr-x
2026-02-24 09:34
README.md
2.08
KB
-rwxrwxr-x
2026-02-24 09:34
SentMessage.php
2.25
KB
-rwxrwxr-x
2026-02-24 09:34
Transport.php
7.25
KB
-rwxrwxr-x
2026-02-24 09:34
composer.json
1.31
KB
-rwxrwxr-x
2026-02-24 09:34
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 RawMessage $original; private RawMessage $raw; private Envelope $envelope; private string $messageId; private string $debug = ''; 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; } /** * Sets the transport-level message ID. */ public function setMessageId(string $id): void { $this->messageId = $id; } /** * Gets the transport-level message ID. * * Not to be confused with the Message-ID header, which is available via getOriginalMessage() */ 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(); } }