当我调用编写此代码的控制器方法时
$config = array(
'protocol' => 'smtp',
'smtp_host' => 'ssl://smtp.googlemail.com',
'smtp_port' => 465,
'smtp_user' => 'me.atiq32@gmail.com',
'smtp_pass' => '********'
);
$this->load->library('email', $config);
$this->email->from('me.atiq32@gmail.com', 'Atiq');
$this->email->to('***@yahoo.com');
$this->email->subject('Email Test');
$this->email->message('Testing the email class.');
if ($this->email->send()) {
echo 'Email will be Sent';
} else {
echo $this->email->print_debugger();
}
} '
发送电子邮件。我的网页没有加载(加载中......)。甚至没有显示任何错误。