$parent = false;
}
- return $this->_driver->SendMail($rfc822, $orig, false, $parent);
+ return $this->_driver->sendMail($rfc822, $orig, false, $parent);
}
/**
$parent = false;
}
- return $this->_driver->SendMail($rfc822, false, $orig, $parent);
+ return $this->_driver->sendMail($rfc822, false, $orig, $parent);
}
/**
// @TODO: Leave the following in place until all are refactored...then throw
// an error if the class does not exist.
switch($cmd) {
- case 'SendMail':
- $status = $this->handleSendMail($version);
- break;
case 'SmartForward':
$status = $this->handleSmartForward($version);
break;
* @param $parent
* @return unknown_type
*/
- public function SendMail($rfc822, $forward = false, $reply = false, $parent = false)
+ public function sendMail($rfc822, $forward = false, $reply = false, $parent = false)
{
return true;
}