Linux vmi2545633.contaboserver.net 6.1.0-32-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.129-1 (2025-03-06) x86_64
Apache/2.4.62 (Debian)
Server IP : 127.0.0.1 & Your IP : 127.0.0.1
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
softmedya.net /
vendor /
symfony /
mime /
Part /
Delete
Unzip
Name
Size
Permission
Date
Action
Multipart
[ DIR ]
drwxr-xr-x
2025-09-16 08:38
AbstractMultipartPart.php
2.23
KB
-rw-r--r--
2025-09-16 08:38
AbstractPart.php
1.49
KB
-rw-r--r--
2025-09-16 08:38
DataPart.php
4.5
KB
-rw-r--r--
2025-09-16 08:38
File.php
1.07
KB
-rw-r--r--
2025-09-16 08:38
MessagePart.php
1.48
KB
-rw-r--r--
2025-09-16 08:38
SMimePart.php
2.34
KB
-rw-r--r--
2025-09-16 08:38
TextPart.php
7.8
KB
-rw-r--r--
2025-09-16 08:38
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\Mime\Part; use Symfony\Component\Mime\Message; use Symfony\Component\Mime\RawMessage; /** * @final * * @author Fabien Potencier <fabien@symfony.com> */ class MessagePart extends DataPart { public function __construct( private RawMessage $message, ) { if ($message instanceof Message) { $name = $message->getHeaders()->getHeaderBody('Subject').'.eml'; } else { $name = 'email.eml'; } parent::__construct('', $name); } public function getMediaType(): string { return 'message'; } public function getMediaSubtype(): string { return 'rfc822'; } public function getBody(): string { return $this->message->toString(); } public function bodyToString(): string { return $this->getBody(); } public function bodyToIterable(): iterable { return $this->message->toIterable(); } public function __serialize(): array { return ['message' => $this->message]; } public function __unserialize(array $data): void { $this->message = $data['message'] ?? $data["\0".self::class."\0message"]; $this->__construct($this->message); } }