From f8636303a53522318740de85497f53672453e775 Mon Sep 17 00:00:00 2001 From: steinm Date: Fri, 12 Nov 2010 22:39:45 +0000 Subject: [PATCH] - new class for general notifier like (Email) --- inc/inc.ClassNotify.php | 45 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 inc/inc.ClassNotify.php diff --git a/inc/inc.ClassNotify.php b/inc/inc.ClassNotify.php new file mode 100644 index 000000000..61ce1dca4 --- /dev/null +++ b/inc/inc.ClassNotify.php @@ -0,0 +1,45 @@ +_siteName, $settings->_httpRoot, "http".((isset($_SERVER['HTTPS']) && (strcmp($_SERVER['HTTPS'],'off')!=0)) ? "s" : "")."://".$_SERVER['HTTP_HOST'].$settings->_httpRoot), + $text)); + } + + function setSender($user) { + $this->sender = $user; + } +} +?>