Example #1
0
 protected static function queueMail($mailer, &$headers, &$options, $queue = false)
 {
     $queue || ($queue = new self());
     is_object($headers) && ($headers = (array) $headers);
     is_object($options) && ($options = (array) $options);
     return $queue->pushMail($mailer, $headers, $options);
 }