diff options
author | Nathan Guse <nathaniel.guse@gmail.com> | 2012-09-09 10:36:22 -0500 |
---|---|---|
committer | Nathan Guse <nathaniel.guse@gmail.com> | 2012-09-09 10:36:22 -0500 |
commit | ff45c9aa7c077fc0a03c64764917d1efcccf48f4 (patch) | |
tree | f94942b4ae5d59f56ba4704e9f0552ff6f6e546c /phpBB/includes/notifications/method/email.php | |
parent | 4b4ea7c5cde7c9f3684ca325c110f81eda593d67 (diff) | |
download | forums-ff45c9aa7c077fc0a03c64764917d1efcccf48f4.tar forums-ff45c9aa7c077fc0a03c64764917d1efcccf48f4.tar.gz forums-ff45c9aa7c077fc0a03c64764917d1efcccf48f4.tar.bz2 forums-ff45c9aa7c077fc0a03c64764917d1efcccf48f4.tar.xz forums-ff45c9aa7c077fc0a03c64764917d1efcccf48f4.zip |
[ticket/11103] General notification email template.
PHPBB3-11103
Diffstat (limited to 'phpBB/includes/notifications/method/email.php')
-rw-r--r-- | phpBB/includes/notifications/method/email.php | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/phpBB/includes/notifications/method/email.php b/phpBB/includes/notifications/method/email.php index 50df9a6c56..69546be73f 100644 --- a/phpBB/includes/notifications/method/email.php +++ b/phpBB/includes/notifications/method/email.php @@ -33,12 +33,7 @@ class phpbb_notifications_method_email extends phpbb_notifications_method_base return true; } - public function notify($notification) - { - // email the user - } - - public function run_queue() + public function notify() { if (!sizeof($this->queue)) { @@ -80,14 +75,18 @@ class phpbb_notifications_method_email extends phpbb_notifications_method_base $user = $this->service->get_user($notification->user_id); - $messenger->template('privmsg_notify', $user['user_lang']); + $messenger->template('notification', $user['user_lang']); $messenger->to($user['user_email'], $user['username']); $messenger->assign_vars(array( - 'SUBJECT' => htmlspecialchars_decode($notification->get_title()), + 'USERNAME' => $user['username'], + + 'MESSAGE' => htmlspecialchars_decode($notification->get_title()), 'U_VIEW_MESSAGE' => $notification->get_full_url(), + + 'U_UNSUBSCRIBE' => $notification->get_unsubscribe_url(), )); $messenger->send('email'); |