原因はmb_send_mail関数です
第五引数でエラーが起きているようです。
回避するために、消しちゃいます。
class/GC_SendMail.php
の編集をします。
--------------------------------ここからソース---------------------------------
function sendMail() {
mb_language( "Japanese" );
// メール送信
//if( mb_send_mail( $this->to, $this->subject, $this->body, $this->header,"-f" . $this->return_path ) ) {
if( mb_send_mail( $this->to, $this->subject, $this->body, $this->header ) ) {
return true;
}
return false;
}
function sendHtmlMail() {
mb_language( "Japanese" );
// メール送信
//if( mail( $this->to, $this->subject, $this->body, $this->header, "-f" . $this->return_path ) ) {
if( mail( $this->to, $this->subject, $this->body, $this->header ) ) {
return true;
}
return false;
}
--------------------------------ここまでソース---------------------------------
第五引数はMTAこコマンドラインパラメータだそうです。
mail.force_extra_parametersがからんでいるみたいです
xreaサーバでphp5以上なら.htaccessでonにしたら動くかもしれません。
だれか試してみてください(w