mdnSend() public method

public mdnSend ( $mdn )
Example #1
0
File: Mdn.php Project: horde/horde
 /**
  * Check if we should and are able to send an MDN.
  *
  * @boolean
  */
 public function mdnCheck()
 {
     if (!$this->_sysCheck() || !$this->_msgCheck()) {
         return false;
     }
     return $this->_connector->mdnSend($this);
 }