<?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 } }