Exemple #1
0
 /**
  * testing stub
  *
  * @return void
  */
 function __smtpSend($data, $code = '250')
 {
     if ($this->_debugSmtp) {
         $this->smtpSend .= $data . "\n";
         return true;
     }
     return parent::__smtpSend($data, $code);
 }
Exemple #2
0
 /**
  * smtpSend method override for testing
  *
  * @access public
  * @return mixed
  */
 function smtpSend($data, $code = '250')
 {
     return parent::__smtpSend($data, $code);
 }