php - phpBB automated email notifications to all members regarding all posts -


while search 1 out on own, may 1 provide quick answer. thank in advance.

so enjoy google groups , how every member receives notification new things happen in group. new topics, old topics, added replies , on. need our own forum, group went phpbb forum on our site.

i want board send out notificatiosn members. members on phone not have present on forum physically.

any 1 faced issue before, quick solutions? settings in phpbb can address right away. may custom setting groups?

==============================================================================

as have found out, every user can subscribe forums. haven't been looking hard enough or missed it. produces desired effect me. far have no idea of way force behavior users regardless of actions. preferable small board. news if nativily supported phpbb bet can write code extend feature.

the thing can think of somehow forcing every member subscriber every applicable forum/thread. via back-end query, not through phpbb provides.

after looking online @ phpbb schema, propose following query set run daily via cron job:

insert phpbb_forums_watch select distinct f.forum_id, u.user_id, 0 phpbb_forums f, phpbb_users u not exists (select 1 phpbb_forums_watch                    forum_id = f.forum_id                         , user_id = u.user_id)  insert phpbb_topics_watch select distinct t.topic_id, u.user_id, 0 phpbb_topics t, phpbb_users u not exists (select 1 phpbb_topics_watch                    topic_id = t.topic_id                         , user_id = u.user_id) 

let me know think of this..


Comments

Popular posts from this blog

ASP.NET/SQL find the element ID and update database -

jquery - appear modal windows bottom -

c++ - Compiling static TagLib 1.6.3 libraries for Windows -