I am trying send email using codeigniter function. I have try this code.
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
public function __construct()
{
parent::__construct();
}
function index()
{
$this->load->library('email');
$this->email->from('[email protected]', 'Your Name');
$this->email->to('[email protected]');
$this->email->subject('Email Test');
$this->email->message('Testing the email class.');
$this->email->send();
//$this->load->view('welcome_message');
}
} ?>
I got this error.
A PHP Error was encountered
Severity: Warning
Message: mail(): Failed to connect to mailserver at "smtp.wlink.com.np" port 25, verify your "SMTP" and "smtp_port" setting in php.ini or use ini_set()
Filename: libraries/Email.php
Line Number: 1553
mx-03.wlink.com.npormx-04.wlink.com.np. So you probably want to use those in your settings instead. - arkascha