/**
  * Ping the connection
  *
  * @return bool
  */
 public function ping()
 {
     return $this->mailer->ping();
 }
 public function testPing()
 {
     $this->assertTrue($this->mailer->ping());
     $this->mailer->close();
 }