| Server IP : 138.197.176.125 / Your IP : 216.73.217.54 Web Server : Apache/2.4.41 (Ubuntu) System : Linux SuiteCRM-8 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.3.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/mequitecbeta.crmtiger.com/modules/CTMultipleSMTP/models/ |
Upload File : |
<?php
/*******************************************************************************
* The content of this file is subject to the CRMTiger Pro license.
* ("License"); You may not use this file except in compliance with the License
* The Initial Developer of the Original Code is https://crmtiger.com/
* Portions created by CRMTiger.com are Copyright(C) CRMTiger.com
* All Rights Reserved.
******************************************************************************/
include_once 'vtlib/Vtiger/Mailer.php';
class CTMultipleSMTP_Mailer_Model extends Vtiger_Mailer {
public static function getInstance() {
return new self();
}
/**
* Initialize this instance
* @access private
*/
function initialize() {
$this->IsSMTP();
global $adb;
$currentUserModel = Users_Record_Model::getCurrentUserModel();
$tableName = "ct_multiple_smtp";
$fieldName = array('*');
$where = array('userid' => $currentUserModel->getId());
$result = Settings_CTMultipleSMTP_Record_Model::getSelectedMultipleSMTPData($tableName,$fieldName,$where,$orderFields=NULL,$sortOrder=NULL);
if($adb->num_rows($result)) {
$this->Host = $adb->query_result($result, 0, 'server');
$this->Username = decode_html($adb->query_result($result, 0, 'server_username'));
$this->Password = decode_html($adb->query_result($result, 0, 'server_password'));
$this->SMTPAuth = $adb->query_result($result, 0, 'smtp_auth');
// To support TLS
$hostinfo = explode("://", $this->Host);
$smtpsecure = $hostinfo[0];
if($smtpsecure == 'tls'){
$this->SMTPSecure = $smtpsecure;
$this->Host = $hostinfo[1];
}
// End
if(empty($this->SMTPAuth)) $this->SMTPAuth = false;
$this->ConfigSenderInfo($adb->query_result($result, 0, 'from_email_field'));
$this->_serverConfigured = true;
// $this->Sender= getReturnPath($this->Host);
}
}
function Send($sync=false, $linktoid=false) {
parent::Send(true, false);
return true;
}
/**
* Function returns error from phpmailer
* @return <String>
*/
function getError() {
return $this->ErrorInfo;
}
}