$row['id'],'fullname'=>$row['fullname'],'email'=>$row['email']); } return $results; } // get_users /** * add_statistics * This should be run if we want to add some statistics to this e-mail, appends to self::$message */ public static function add_statistics($methods) { } // add_statistics /** * send * This actually sends the mail, how amazing */ public static function send() { mail(self::$from,self::$subject,self::$message,"From: " . self::$from . "\r\nBcc: " . self::$recipient . "\r\n"); return true; } // send } // AmpacheMail class ?>