diff options
Diffstat (limited to 'phpBB/includes/notifications/method/email.php')
-rw-r--r-- | phpBB/includes/notifications/method/email.php | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/phpBB/includes/notifications/method/email.php b/phpBB/includes/notifications/method/email.php new file mode 100644 index 0000000000..b06e2c018e --- /dev/null +++ b/phpBB/includes/notifications/method/email.php @@ -0,0 +1,28 @@ +<?php +/** +* +* @package notifications +* @copyright (c) 2012 phpBB Group +* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 +* +*/ + +/** +* @ignore +*/ +if (!defined('IN_PHPBB')) +{ + exit; +} + +/** +* Email notification method class +* @package notifications +*/ +class phpbb_notifications_method_email extends phpbb_notifications_method_base +{ + function notify() + { + // email the user + } +} |