/data/class/SC_SendMail.php
268行目付近
$result = $this->objMail->send($recip, $header, $this->body);
をコメントアウトする。
/**
* TXTメール送信を実行する.
*
* 設定された情報を利用して, メールを送信する.
*
* @return void
*/
function sendMail($isHtml = false) {
$header = $isHtml ? $this->getHTMLHeader() : $this->getTEXTHeader();
$recip = $this->getRecip();
// メール送信
$result = $this->objMail->send($recip, $header, $this->body);
if (PEAR::isError($result)) {
GC_Utils_Ex::gfPrintLog($result->getMessage());
GC_Utils_Ex::gfDebugLog($header);
return false;
}
return true;
}