示例#1
0
 /**
  * Check whether report exists for specified address
  * @param string $address email address
  * @return bool
  */
 public function hasReport($address)
 {
     $bounce = Bounce::findOne($address);
     return isset($bounce);
 }