예제 #1
0
파일: of_mailer.php 프로젝트: Kervinou/OBM
 /**
  * If the mail server is not properly configured and mails cannot be sent,
  * Stato will throw an exception, but we prefer to fail silently
  */
 public function send($method_name, $args) {
   try {
     return parent::send($method_name, $args);
   } catch (Exception $e) {
     return false;
   }
 }