Codeigniter邮件内部服务器错误

时间:2012-07-05 17:03:47

标签: php codeigniter email internal-server-error

尝试使用sendmail或smtp发送电子邮件时,我收到内部服务器错误。 我收到了电子邮件,但根据错误日志,cookies出现了问题:

  

mod_security:拒绝访问代码500.解析cookie时出错:错误规范化cookie值:检测到无效字符[0] [hostname“myDomain.be”] [uri“/favicon.ico”]

我不知道favicon.ico在那里做什么,因为我没有使用favicon

$this->load->library('email');

    $this->email->from($this->input->post('email'), $this->input->post('name'));
            $this->email->to('xxx@xxx.com'); 

            $this->email->subject('xxxcontact');
            $this->email->message($this->input->post('message'));   
            $this->email->set_alt_message($this->input->post('message'));
            ($this->email->send())

我在配置文件中定义了我的配置。

1 个答案:

答案 0 :(得分:0)

请原谅我的无知,但为什么$this->email->send()在括号中?尝试使用<?php echo $this->email->print_debugger(); ?>

查看输出