sendmailまたはsmtpのいずれかを使用して電子メールを送信しようとすると、内部サーバーエラーが発生します。メールを受信しましたが、エラーログによるとCookieに問題があります。
mod_security:コード500でアクセスが拒否されました。Cookieの解析エラー:Cookie値の正規化エラー:無効な文字が検出されました[0] [hostname "myDomain.be"] [uri "/favicon.ico"]
ファビコンを使用していないため、favicon.icoがそこで何をしているのかわかりません
$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())
構成ファイルで構成を定義しています。