|
本帖最后由 635265428 于 2015-2-3 11:02 编辑
PHP复制代码
报错:Fatal error : Cannot access protected property Share ::$email in E :\work\sf\ system\core\Loader .php on line [i ]1095
public function send_email (){
$sl= $this->input->post('sl');
$mails = $this->input->post('mails');
if(!$mails){
return;
}
//加载CI的email类
$this->load->library('email');
//以下设置Email内容
$host = 'http://'.$_SERVER['HTTP_HOST'];
$url = $host.'/d/'.$sl;
$html = '';
$this->email->from('FROM_MAIL, '');
$this->email->to($mails);
$this->email->subject('邮件 );
$this->email->message($html);
$this->email->send();
return;
}
怎么回事????
[/i ]
复制代码
|
|