Google

Cyb3r Drag0nz Team Shell

Server : Apache
System : Linux webd003.cluster126.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
User : atwiofrxug (73666)
PHP Version : 8.4.10
Disable Functions : _dyuweyrj4,_dyuweyrj4r,dl
Current Directory : /home/atwiofrxug/mylittletelaviv/wp-content/plugins/newsletter/includes/
Directory Status: Writeable | Document Root: Writeable

Upload File







Viewing: /home/atwiofrxug/mylittletelaviv/wp-content/plugins/newsletter/includes/mailer.php

<?php

abstract class TNP_Mailer {

    var $queue = array();
    var $errors = array();
    var $name = '';

    public function __construct($name) {
        $this->name = $name;
    }
    
    abstract public function mail($to, $subject, $message, $headers = null, $enqueue = false, $from = false);

    /**
     * @return WP_Error[] A list of errors associated to flushed messages
     */
    public function flush() {
        $this->queue = array();
    }

    function get_errors() {
        return $this->errors;
    }

    function clear_errors() {
        $this->errors = array();
    }

    /**
     * @return NewsletterLogger
     */
    function get_logger() {
        static $logger = null;
        if (is_null($logger)) {
            $logger = new NewsletterLogger($this->name);
        }

        return $logger;
    }

}

Cyb3r Drag0nz Team • Google Edition