我是codeigniter的新手我想要做的很简单我在代码点火器中使用简单的电子邮件库发送邮件我已经将代码上传到服务器但是有些如何不发送电子邮件!这是我的代码
构造
function __construct(){
parent::__construct();
$this->load->helper(array('form', 'url'));
$this->load->model('contactus');
$this->load->library('email');
}
我已加入电子邮件库
public function contactus()
{
$data = $this->input->post();
$this->contactus->contactus_db($data);
$this->email->to('uneeb@nextcrawl.com');
$this->email->subject('Contact US');
$msg="hey uneeb";
$this->email->message($msg);
if($this->email->send()) {
echo "send";
}
else
{
echo "not send";
}
//redirect('Home');
}
这是我的电子邮件代码我做了一些验证,邮件实际上是否发送,在这种情况下,它显示发送我不知道是什么问题!