23 lines
425 B
PHP
23 lines
425 B
PHP
<?php defined('BASEPATH') OR exit('No direct script access allowed');
|
|
|
|
|
|
|
|
include_once APPPATH.'/vendor/autoload.php';
|
|
use PHPMailer\PHPMailer\PHPMailer;
|
|
use PHPMailer\PHPMailer\Exception;
|
|
class Phpmailer_library
|
|
{
|
|
public function __construct()
|
|
{
|
|
log_message('Debug', 'PHPMailer class is loaded.');
|
|
}
|
|
|
|
public function load()
|
|
{
|
|
$objMail = new PHPMailer;
|
|
return $objMail;
|
|
}
|
|
}
|
|
|
|
|
|
?>
|