Source of file api.messagesqueue.php

Size: 24,668 Bytes - Last Modified: 2026-08-12T15:26:42+03:00

/tmp/current_snapshot/api/libs/api.messagesqueue.php

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726
<?php

/**
 * System-wide outcoming messages queue for SMS/Telegram/Emails etc..
 */
class MessagesQueue {

    /**
     * Message helper object placeholder
     *
     * @var object
     */
    protected $messages = '';

    /**
     * SMS system queue object placeholder
     *
     * @var object
     */
    protected $sms = '';

    /**
     * Email queue object placeholder
     *
     * @var object
     */
    protected $email = '';

    /**
     * PHPMail queue object placeholder
     *
     * @var object
     */
    protected $phpMail = '';

    /**
     * Telegram system queue object placeholder
     *
     * @var object
     */
    protected $telegram = '';

    /**
     * System json helper object placeholder
     *
     * @var object
     */
    protected $json = '';

    /**
     * Base module URL and another routes here
     */
    const URL_ME = '?module=tsmsqueue';
    const ROUTE_SMSFLUSH = 'flushallsms';
    const ROUTE_TLGFLUSH = 'flushalltelegram';

    public function __construct() {
        $this->initMessages();
        $this->initJson();
        $this->initSystemQueues();
    }

    /**
     * Inits default messages helper object
     * 
     * @return void
     */
    protected function initMessages() {
        $this->messages = new UbillingMessageHelper();
    }

    /**
     * Creates protected instances of UbillingSMS, UbillingMail and UbillingTelegram classes for further usage
     * 
     * @return void
     */
    protected function initSystemQueues() {
        $this->sms = new UbillingSMS();
        $this->email = new UbillingMail();
        $this->phpMail = new UbillingPHPMail();
        $this->telegram = new UbillingTelegram();
    }

    /**
     * Inits json datatables helper object
     * 
     * @return void
     */
    protected function initJson() {
        $this->json = new wf_JqDtHelper();
    }

    /**
     * Renders one sms data into human readeble preview
     * 
     * @param array $data
     * 
     * @return string
     */
    protected function smsPreview($data) {
        $result = '';
        if (!empty($data)) {
            $smsDataCells = wf_TableCell(__('Mobile'), '', 'row2');
            $smsDataCells .= wf_TableCell($data['number']);
            $smsDataRows = wf_TableRow($smsDataCells, 'row3');
            $smsDataCells = wf_TableCell(__('Message'), '', 'row2');
            $smsDataCells .= wf_TableCell($data['message']);
            $smsDataRows .= wf_TableRow($smsDataCells, 'row3');
            $result = wf_TableBody($smsDataRows, '100%', '0', 'glamour');
        }
        return ($result);
    }

    /**
     * Renders one email queue element in human readeble preview
     * 
     * @param array $data
     * 
     * @return string
     */
    protected function emailPreview($data) {
        $result = '';
        if (!empty($data)) {
            $dataCells = wf_TableCell(__('Email'), '', 'row2');
            $dataCells .= wf_TableCell($data['email']);
            $dataRows = wf_TableRow($dataCells, 'row3');
            $dataCells = wf_TableCell(__('Subject'), '', 'row2');
            $dataCells .= wf_TableCell($data['subj']);
            $dataRows .= wf_TableRow($dataCells, 'row3');
            $dataCells = wf_TableCell(__('Message'), '', 'row2');
            $dataCells .= wf_TableCell($data['message']);
            $dataRows .= wf_TableRow($dataCells, 'row3');
            $result = wf_TableBody($dataRows, '100%', '0', 'glamour');
        }
        return ($result);
    }

    /**
     * Renders one telegram queue element in human readeble preview
     * 
     * @param array $data
     * 
     * @return string
     */
    protected function telegramPreview($data) {
        $result = '';
        if (!empty($data)) {
            $messageText = nl2br($data['message']);
            $dataCells = wf_TableCell(__('Chat ID'), '', 'row2');
            $dataCells .= wf_TableCell($data['chatid']);
            $dataRows = wf_TableRow($dataCells, 'row3');
            $dataCells = wf_TableCell(__('Message'), '', 'row2', 'valign="top"');
            $dataCells .= wf_TableCell($messageText);
            $dataRows .= wf_TableRow($dataCells, 'row3');
            $result = wf_TableBody($dataRows, '100%', '0', 'glamour');
        }
        return ($result);
    }

    /**
     * Renders list of available SMS in queue container
     * 
     * @return string
     */
    public function renderSmsQueue() {
        $result = '';
        $smsQueueCount = $this->sms->getQueueCount();
        if ($smsQueueCount > 0) {
            if ($this->sms->smsRoutingFlag) {
                $columns = array('Date', 'Mobile', __('SMS service'), 'Actions');
            } else {
                $columns = array('Date', 'Mobile', 'Actions');
            }
            $result .= wf_JqDtLoader($columns, self::URL_ME . '&ajaxsms=true', false, __('SMS'), 100, '"order": [[ 0, "desc" ]]');
        } else {
            $result .= $this->messages->getStyledMessage(__('Nothing found'), 'info');
        }
        return ($result);
    }

    /**
     * Renders JSON list of available SMS in queue with some controls
     * 
     * @return void
     */
    public function renderSMSAjaxQueue() {
        $smsQueue = $this->sms->getQueueData();
        if (!empty($smsQueue)) {
            /**
             * dakara ima ichibyou goto ni sekaisen wo koete
             * kimi no sono egao  mamoritai no sa
             * soshite mata kanashimi no nai jikan no RUUPU e to
             * nomikomarete yuku  kodoku no kansokusha
             */
            foreach ($smsQueue as $io => $each) {
                $actLinks = wf_modalAuto(wf_img('skins/icon_search_small.gif', __('Preview')), __('Preview'), $this->smsPreview($each), '');
                $actLinks .= wf_JSAlert(self::URL_ME . '&deletesms=' . $each['filename'], web_delete_icon(), $this->messages->getDeleteAlert());
                $data[] = $each['date'];
                $data[] = $each['number'];

                if ($this->sms->smsRoutingFlag) {
                    $data[] = $this->sms->smsDirections->getDirectionNameById($each['smssrvid']);
                }

                $data[] = $actLinks;
                $this->json->addRow($data);
                unset($data);
            }
        }
        $this->json->getJson();
    }

    /**
     * Renders list of available emails in queue container
     * 
     * @return string
     */
    public function renderEmailQueue() {
        $result = '';
        $queueCount = $this->email->getQueueCount();
        if ($queueCount > 0) {
            $columns = array('Date', 'Email', 'Actions');
            $result .= wf_JqDtLoader($columns, self::URL_ME . '&showqueue=email&ajaxmail=true', false, __('Email'), 100, '"order": [[ 0, "desc" ]]');
        } else {
            $result .= $this->messages->getStyledMessage(__('Nothing found'), 'info');
        }
        return ($result);
    }

    /**
     * Renders JSON list of available emails in queue with some control
     * 
     * @return void
     */
    public function renderEmailAjaxQueue() {
        $queue = $this->email->getQueueData();
        if (!empty($queue)) {
            foreach ($queue as $io => $each) {
                $actLinks = wf_modalAuto(wf_img('skins/icon_search_small.gif', __('Preview')), __('Preview'), $this->emailPreview($each), '');
                $actLinks .= wf_JSAlert(self::URL_ME . '&showqueue=email&deleteemail=' . $each['filename'], web_delete_icon(), $this->messages->getDeleteAlert());
                $data[] = $each['date'];
                $data[] = $each['email'];
                $data[] = $actLinks;
                $this->json->addRow($data);
                unset($data);
            }
        }
        $this->json->getJson();
    }

    /**
     * Renders list of available telegram messages in queue container
     * 
     * @return string
     */
    public function renderTelegramQueue() {
        $result = '';
        $queueCount = $this->telegram->getQueueCount();
        if ($queueCount > 0) {
            $columns = array('Date', 'Chat ID', 'Actions');
            $result .= wf_JqDtLoader($columns, self::URL_ME . '&showqueue=telegram&ajaxtelegram=true', false, __('Message'), 100, '"order": [[ 0, "desc" ]]');
        } else {
            $result .= $this->messages->getStyledMessage(__('Nothing found'), 'info');
        }
        return ($result);
    }

    /**
     * Renders JSON list of available telegram messages in queue with some controls
     * 
     * @return void
     */
    public function renderTelegramAjaxQueue() {
        $queue = $this->telegram->getQueueData();
        if (!empty($queue)) {
            foreach ($queue as $io => $each) {
                $actLinks = wf_modalAuto(wf_img('skins/icon_search_small.gif', __('Preview')), __('Preview'), $this->telegramPreview($each), '');
                $actLinks .= wf_JSAlert(self::URL_ME . '&showqueue=telegram&deletetelegram=' . $each['filename'], web_delete_icon(), $this->messages->getDeleteAlert());
                $data[] = $each['date'];
                $data[] = $each['chatid'];
                $data[] = $actLinks;
                $this->json->addRow($data);
                unset($data);
            }
        }
        $this->json->getJson();
    }

    /**
     * Deletes SMS from local queue
     * 
     * @param string $filename Existing sms filename
     * 
     * @return int 0 - ok, 1 - deletion unsuccessful, 2 - file not found 
     */
    public function deleteSms($filename) {
        $result = $this->sms->deleteSms($filename);

        return ($result);
    }

    /**
     * Flushes all available messages from SMS queue
     * 
     * @return void
     */
    public function flushSmsQueue() {
        $allMessages = $this->sms->getQueueData();
        $cleanupCount = 0;
        if (!empty($allMessages)) {
            foreach ($allMessages as $io => $each) {
                $deletionResult = $this->sms->deleteSms($each['filename']);
                if ($deletionResult == 0) {
                    $cleanupCount++;
                    log_register('USMS FLUSH MESSAGE FOR `' . $each['number'] . '` AS `' . $each['filename'] . '`');
                }
            }
        }
        log_register('USMS FLUSHED `' . $cleanupCount . '` MESSAGES');
    }

    /**
     * Returns SMS queue messages count
     * 
     * @return int
     */
    public function getSmsQueueCount() {
        return($this->sms->getQueueCount());
    }

    /**
     * Deletes email from local queue
     * 
     * @param string $filename Existing email filename
     * 
     * @return int
     */
    public function deleteEmail($filename) {
        $result = $this->email->deleteEmail($filename);
        return ($result);
    }

    /**
     * Deletes existing telegram message from queue
     * 
     * @param string $filename
     * 
     * @return int
     */
    public function deleteTelegram($filename) {
        $result = $this->telegram->deleteMessage($filename);
        return ($result);
    }

    /**
     * Flushes all available messages from SMS queue
     * 
     * @return void
     */
    public function flushTelegramQueue() {
        $allMessages = $this->telegram->getQueueData();
        $cleanupCount = 0;
        if (!empty($allMessages)) {
            foreach ($allMessages as $io => $each) {
                $deletionResult = $this->telegram->deleteMessage($each['filename']);
                if ($deletionResult == 0) {
                    $cleanupCount++;
                    log_register('UTLG FLUSH MESSAGE FOR `' . $each['chatid'] . '` AS `' . $each['filename'] . '`');
                }
            }
        }
        log_register('UTLG FLUSHED `' . $cleanupCount . '` MESSAGES');
    }

    /**
     * Returns Telegram messages queue count
     * 
     * @return int
     */
    public function getTelegramQueueCount() {
        return($this->telegram->getQueueCount());
    }

    /**
     * Deletes SendDog PID file
     * 
     * @return void
     */
    public function calmTheDog() {
        $sendogPidFile = SendDog::PID_PATH;
        if (file_exists($sendogPidFile)) {
            unlink($sendogPidFile);
            log_register('SENDDOG PID DESTROY');
        }
    }

    /**
     * Runs SendDog queues processing
     * 
     * @return int 1 - ok, 0 - already running
     */
    public function runTheDog() {
        $result = 1;
        $sendogPidFile = SendDog::PID_PATH;
        //senddog isnt running now?
        if (!file_exists($sendogPidFile)) {
            //im to lazy to do this in normal way
            $command = '/bin/ubapi senddog';
            shell_exec($command);
            log_register('SENDDOG MANUAL RUN');
        } else {
            $result = 0;
            log_register('SENDDOG ALREADY RUNS');
        }
        return($result);
    }

    /**
     * Renders module control panel
     * 
     * @return string
     */
    public function renderPanel($phpMailerOn = false) {
        $result = '';
        $result .= wf_Link(self::URL_ME, wf_img('skins/icon_sms_micro.gif') . ' ' . __('SMS in queue'), false, 'ubButton');
        $result .= wf_Link(self::URL_ME . '&showqueue=email', wf_img('skins/icon_mail.gif') . ' ' . __('Emails in queue'), false, 'ubButton');
        $result .= ($phpMailerOn) ? wf_Link(self::URL_ME . '&showqueue=phpmail', wf_img('skins/icon_mail.gif') . ' PHPMailer: ' . __('Emails in queue'), false, 'ubButton') : '';
        $result .= wf_Link(self::URL_ME . '&showqueue=telegram', wf_img_sized('skins/icon_telegram_small.png', '', '10', '10') . ' ' . __('Telegram messages queue'), false, 'ubButton') . ' ';
        $sendogPidFile = SendDog::PID_PATH;
        $indicatorStyle = 'float:right;';
        $dogIndicator = '';
        if (file_exists($sendogPidFile)) {
            $lastDogWalkTime = @file_get_contents($sendogPidFile);
            $dogIndicator = wf_img('skins/dog_stand.png', __('SendDog is working') . ' ' . __('from') . ' ' . $lastDogWalkTime, $indicatorStyle);
            if (cfr('ROOT')) {
                $stopForm = '';
                $stopForm .= wf_tag('center') . wf_img('skins/dog_stand.png') . wf_tag('center', true);
                $stopForm .= __('SendDog is working') . ' ' . __('from') . ' ' . $lastDogWalkTime;
                $stopForm .= wf_CleanDiv();
                $stopForm .= wf_delimiter(0);
                $inputs = wf_HiddenInput('calmthedog', 'true');
                $inputs .= wf_Submit(__('Calm the dog'));
                $stopForm .= wf_Form('', 'POST', $inputs, 'glamour');
                $dogIndicator = wf_modalAuto($dogIndicator, __('Manage'), $stopForm);
            }
        } else {
            $dogIndicator = wf_img('skins/dog_sleep.png', __('SendDog is sleeping'), $indicatorStyle);
            if (cfr('ROOT')) {
                $runForm = '';
                $runForm .= wf_tag('center') . wf_img('skins/dog_sleep.png') . wf_tag('center', true);
                $runForm .= __('SendDog is sleeping');
                $runForm .= wf_CleanDiv();
                $runForm .= wf_delimiter(0);
                $inputs = wf_HiddenInput('runthedog', 'true');
                $inputs .= wf_Submit(__('Run the dog'));
                $runForm .= wf_Form('', 'POST', $inputs, 'glamour');
                $dogIndicator = wf_modalAuto($dogIndicator, __('Manage'), $runForm);
            }
        }
        $result .= $dogIndicator;
        return ($result);
    }

    /**
     * Returns modal window with SMS creation form
     * 
     * @return string
     */
    public function smsCreateForm() {
        $result = '';
        $inputs = wf_TextInput('newsmsnumber', __('Mobile'), '', true, '20');
        $inputs .= wf_TextArea('newsmsmessage', '', '', true, '30x5');
        $inputs .= wf_CheckInput('newsmstranslit', __('Forced transliteration'), true, true);
        $inputs .= wf_Submit(__('Create'));
        $form = wf_Form('', 'POST', $inputs, 'glamour');
        $result = wf_modalAuto(wf_img('skins/add_icon.png', __('Create new SMS')), __('Create new SMS'), $form, '');
        return ($result);
    }

    /**
     * Creates new SMS for queue
     * 
     * @param string $number
     * @param string $message
     * 
     * @return string/void
     */
    public function createSMS($number, $message) {
        $result = '';
        $translit = (wf_CheckPost(array('newsmstranslit'))) ? true : false;
        if (ispos($number, '+')) {
            $this->sms->sendSMS($number, $message, $translit, 'TQUEUE');
        } else {
            $result = __('Number must be in international format');
        }
        return ($result);
    }

    /**
     * Returns modal window with email creation form
     * 
     * @return string
     */
    public function emailCreateForm() {
        $result = '';
        $inputs = wf_TextInput('newemailaddress', __('Email'), '', true, '20');
        $inputs .= wf_TextInput('newemailsubj', __('Subject'), '', true, '40');
        $inputs .= wf_TextArea('newemailmessage', '', '', true, '50x10');
        $inputs .= wf_Submit(__('Create'));
        $form = wf_Form('', 'POST', $inputs, 'glamour');
        $result = wf_modalAuto(wf_img('skins/add_icon.png', __('Create new email')), __('Create new email'), $form, '');
        return ($result);
    }

    /**
     * Creates new email message in queue
     * 
     * 
     * @param string $email
     * @param string $subj
     * @param string $messages
     * 
     * @return string/void
     */
    public function createEmail($email, $subj, $message) {
        $result = '';
        if ((!empty($email)) AND ( !empty($message)) AND ( !empty($subj))) {
            $this->email->sendEmail($email, $subj, $message, 'TQUEUE');
        } else {
            $result = __('Not all of required fields are filled');
        }
        return ($result);
    }

    /**
     * Returns modal window with telegram message creation form
     * 
     * @return string
     */
    public function telegramCreateForm() {
        $result = '';
        $inputs = wf_TextInput('newtelegramchatid', __('Chat ID'), '', true, '20');
        $inputs .= wf_TextArea('newtelegrammessage', '', '', true, '50x10');
        $inputs .= wf_Submit(__('Create'));
        $form = wf_Form('', 'POST', $inputs, 'glamour');
        $result = wf_modalAuto(wf_img('skins/add_icon.png', __('Create new Telegram message')), __('Create new Telegram message'), $form, '');
        return ($result);
    }

    /**
     * Creates new telegram message in queue
     * 
     * @param string $chatid
     * @param string $message
     * 
     * @return string
     */
    public function createTelegram($chatid, $message) {
        $result = '';
        if ((!empty($chatid)) AND ( !empty($message))) {
            $this->telegram->sendMessage($chatid, $message, false, 'TQUEUE');
        } else {
            $result = __('Not all of required fields are filled');
        }
        return ($result);
    }

    /**
     * Renders one PHPMailer queue element in human readable preview
     *
     * @param array $data
     *
     * @return string
     */
    protected function phpMailPreview($data) {
        $result = '';
        if (!empty($data)) {
            $dataCells = wf_TableCell(__('Email'), '', 'row2');
            $dataCells .= wf_TableCell($data['email']);
            $dataRows = wf_TableRow($dataCells, 'row3');
            $dataCells = wf_TableCell(__('Subject'), '', 'row2');
            $dataCells .= wf_TableCell($data['subj']);
            $dataRows .= wf_TableRow($dataCells, 'row3');
            $dataCells = wf_TableCell(__('Message'), '', 'row2');
            $dataCells .= wf_TableCell($data['message']);
            $dataRows .= wf_TableRow($dataCells, 'row3');
            $dataCells = wf_TableCell(__('Attach path'), '', 'row2');
            $dataCells .= wf_TableCell($data['attachpath']);
            $dataRows .= wf_TableRow($dataCells, 'row3');
            $dataCells = wf_TableCell(__('Body as HTML'), '', 'row2');
            $dataCells .= wf_TableCell(($data['bodyashtml']) ? web_green_led() : web_red_led());
            $dataRows .= wf_TableRow($dataCells, 'row3');
            $dataCells = wf_TableCell(__('From'), '', 'row2');
            $dataCells .= wf_TableCell($data['from']);
            $dataRows .= wf_TableRow($dataCells, 'row3');
            $dataCells = wf_TableCell(__('Custom headers'), '', 'row2');
            $dataCells .= wf_TableCell((empty($data['customheaders'])) ? web_red_led() : web_green_led());
            $dataRows .= wf_TableRow($dataCells, 'row3');

            $result = wf_TableBody($dataRows, '100%', '0', 'glamour');
        }
        return ($result);
    }

    /**
     * Renders list of available PHPMailer emails in queue container
     *
     * @return string
     */
    public function renderPHPMailQueue() {
        $result = '';
        $queueCount = $this->phpMail->getQueueCount();
        $ajaxURL = '&showqueue=phpmail&ajaxphpmail=true';

        if ($queueCount > 0) {
            $columns = array('Date', 'Email', 'Actions');
            $result .= wf_JqDtLoader($columns, self::URL_ME . $ajaxURL, false, __('Email'), 100, '"order": [[ 0, "desc" ]]');
        } else {
            $result .= $this->messages->getStyledMessage(__('Nothing found'), 'info');
        }

        return ($result);
    }

    /**
     * Renders JSON list of available PHPMailer emails in queue with some controls
     *
     * @return void
     */
    public function renderPHPMailAjaxQueue() {
        $queue = $this->phpMail->getQueueData();
        $delURL = '&showqueue=phpmail&deletephpmail=';

        if (!empty($queue)) {
            foreach ($queue as $io => $each) {
                $actLinks = wf_modalAuto(wf_img('skins/icon_search_small.gif', __('Preview')), __('Preview'), $this->phpMailPreview($each), '');
                $actLinks .= wf_JSAlert(self::URL_ME . $delURL . $each['filename'], web_delete_icon(), $this->messages->getDeleteAlert());
                $data[] = $each['date'];
                $data[] = $each['email'];
                $data[] = $actLinks;
                $this->json->addRow($data);
                unset($data);
            }
        }

        $this->json->getJson();
    }

    /**
     * Deletes email from local queue
     *
     * @param string $filename Existing email filename
     *
     * @return int
     */
    public function deletePHPMail($filename) {
        $result = $this->phpMail->deleteEmail($filename);
        return ($result);
    }

    /**
     * Returns modal window with email creation form
     *
     * @return string
     */
    public function phpMailCreateForm() {
        $result = '';
        $inputs = wf_TextInput('newemailaddress', __('Email'), '', true, '20');
        $inputs .= wf_TextInput('newemailfrom', __('From'), '', true, '20');
        $inputs .= wf_CheckInput('newmailbodyashtml', __('Body as HTML'), true);
        $inputs .= wf_TextInput('newemailsubj', __('Subject'), '', true, '40');
        $inputs .= wf_TextArea('newemailmessage', '', '', true, '50x10');
        $inputs .= __('Add attachment') . ' <input id="fileselector" type="file" name="newmailattach" size="10" />' . wf_delimiter(0);
        $inputs .= wf_delimiter(0);
        $inputs .= wf_Submit(__('Create'));

        $form = bs_UploadFormBody('', 'POST', $inputs, 'glamour');

        $result = wf_modalAuto(wf_img('skins/add_icon.png', __('Create new email')), __('Create new email'), $form, '');
        return ($result);
    }

    /**
     * Creates new PHPMail message in queue
     *
     * @param string $email
     * @param string $subj
     * @param string $messages
     * @param string $attachPath
     * @param bool $bodyAsHTML
     * @param string $from
     *
     * @return string/void
     */
    public function createPHPMail($email, $subj, $message, $attachPath = '', $bodyAsHTML = false, $from = '') {
        $result = '';

        if ((!empty($email)) AND ( !empty($message)) AND ( !empty($subj))) {
            $this->phpMail->sendEmail($email, $subj, $message, $attachPath, $bodyAsHTML, $from, array(), 'TQUEUE');
        } else {
            $result = __('Not all of required fields are filled');
        }

        return ($result);
    }

    /**
     * Uploads attachment file for further processing
     *
     * @return string
     */
    public function uploadAttach() {
        $result = '';
        $uploaddir = $this->phpMail->mailerAttachPath;
        $uploadfile = $uploaddir . vf($_FILES['newmailattach']['name']);

        if (move_uploaded_file($_FILES['newmailattach']['tmp_name'], $uploadfile)) {
            $result = $uploadfile;
        }

        return ($result);
    }

}

?>