Exemplo n.º 1
0
 /**
  * Send the email, either via the API or via SMTP
  *
  * @return boolean
  */
 public function send()
 {
     if ($this->api()) {
         return $this->sendAPI();
     }
     return parent::send();
 }