mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-01 14:30:32 +02:00
[ticket/11103] Forgot a constant
PHPBB3-11103
This commit is contained in:
@@ -17,11 +17,19 @@ if (!defined('IN_PHPBB'))
|
||||
|
||||
/**
|
||||
* Email notification method class
|
||||
* This class handles sending emails for notifications
|
||||
*
|
||||
* @package notifications
|
||||
*/
|
||||
class phpbb_notifications_method_email extends phpbb_notifications_method_base
|
||||
{
|
||||
function notify()
|
||||
public static function is_available()
|
||||
{
|
||||
// Email is always available
|
||||
return true;
|
||||
}
|
||||
|
||||
public function notify()
|
||||
{
|
||||
// email the user
|
||||
}
|
||||
|
Reference in New Issue
Block a user