<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Mail extends CI_Controller{
function __construct(){
parent::__construct();
}
function index(){
// Load PHPMailer library
$this->load->library('phpmailer_lib');
// PHPMailer object
$mail = $this->phpmailer_lib->load();
// SMTP configuration
$mail->isSMTP();
$mail->SMTPDebug = 1;
$mail->Timeout = 5;
$mail->Host = 'smtp.googlemail.com';
$mail->SMTPAuth = true;
$mail->Username = 'xxxx@gmail.com';
$mail->Password = '**********';
$mail->SMTPSecure = 'ssl';
$mail->Port = 465;
$mail->setFrom('xxxx@gmail.com', 'xxxxx');
// Add a recipient
$mail->addAddress('yyyy@gmail.com');
// Email subject
$mail->Subject = 'Send Email via SMTP using PHPMailer in CodeIgniter';
// Set email format to HTML
$mail->isHTML(true);
// Email body content
$mailContent = "<h1>Send HTML Email using SMTP in CodeIgniter</h1>
<p>This is a test email sending using SMTP mail server with PHPMailer.</p>";
$mail->Body = $mailContent;
// Send email
if(!$mail->send()){
echo 'Message could not be sent.';
echo 'Mailer Error: ' . $mail->ErrorInfo;
}else{
echo 'Message has been sent';
}
}
}