| Server IP : 68.178.202.69 / Your IP : 216.73.216.122 Web Server : Apache System : Linux 69.202.178.68.host.secureserver.net 3.10.0-1160.139.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Nov 3 13:30:41 UTC 2025 x86_64 User : ikioworld ( 1005) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/ikioworld/public_html/application/libraries/ |
Upload File : |
<?php defined('BASEPATH') OR exit('No direct script access allowed.');
/**
* CodeIgniter compatible email-library powered by PHPMailer.
* Version: 1.3.1
* @author Ivan Tcholakov <ivantcholakov@gmail.com>, 2012-2019.
* @license The MIT License (MIT), http://opensource.org/licenses/MIT
* @link https://github.com/ivantcholakov/codeigniter-phpmailer
*
* This library is intended to be compatible with CI 2.x and CI 3.x.
*
* Tested on CodeIgniter 3.1.10-dev (December 6th, 2018) and
* PHPMailer Version 6.0.6 (November 16th, 2018).
*/
if (version_compare(CI_VERSION, '3.1.0') >= 0) {
if (is_php('5.5') && class_exists('\\PHPMailer\\PHPMailer\\PHPMailer', true)) {
require_once dirname(__FILE__).'/MY_Email_3_1_x_phpmailer_6_0_x.php';
} else {
require_once dirname(__FILE__).'/MY_Email_3_1_x.php';
}
} elseif (version_compare(CI_VERSION, '3.0') >= 0) {
require_once dirname(__FILE__).'/MY_Email_3_0_x.php';
} else {
require_once dirname(__FILE__).'/MY_Email_2_x.php';
}