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.117.132.79
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp-musonza /
vendor /
symfony /
mime /
Part /
Delete
Unzip
Name
Size
Permission
Date
Action
Multipart
[ DIR ]
drwxr-xr-x
2021-02-02 06:10
AbstractMultipartPart.php
2.29
KB
-rw-r--r--
2021-02-02 06:10
AbstractPart.php
1.48
KB
-rw-r--r--
2021-02-02 06:10
DataPart.php
4.71
KB
-rw-r--r--
2021-02-02 06:10
MessagePart.php
1.23
KB
-rw-r--r--
2021-02-02 06:10
SMimePart.php
2.71
KB
-rw-r--r--
2021-02-02 06:10
TextPart.php
5.86
KB
-rw-r--r--
2021-02-02 06:10
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 { private $message; public function __construct(RawMessage $message) { if ($message instanceof Message) { $name = $message->getHeaders()->getHeaderBody('Subject').'.eml'; } else { $name = 'email.eml'; } parent::__construct('', $name); $this->message = $message; } 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(); } }