- 32060338 Besucher
class NotificationUtil { public static function sendNotification($object) { return NotificationUtil::sendNotificationInternal($object, 'nw-aktive@lists.rapidnetworks.de'); } public static function sendDJNotification($object) { return NotificationUtil::sendNotificationInternal($object, 'nw-djs@lists.rapidnetworks.de'); } public static function sendNotificationInternal($object, $to) { $notification = $object->getNotification(); $subject = $notification['subject']; $message = $notification['message']; @mail($to, $subject, $message); } } ?>