Info
- 5 posts
- 2 voices
- Started 1 year ago by dudd
- Latest reply from dudd
- This topic is not resolved
Help for my plugin "admin notification"
-
- Posted 1 year ago #
Hi,
I need help to develope a plugin that notificat and send email to admin about who have post a message on forum (guest or member) :
########################################################################
function admin_notification() {
if (bb_is_user_logged_in()){$message_notification="a membre have post a message";}else{$message_notification="a guest have post a message";}
$admin="admin@exemple.com";
bb_mail($admin, "new post on your forum", $message_notification);
}
add_action('bb_new_post', 'admin_notification');
########################################################################But this code always send "a membre have post a message" even if a guest post ...
-
- Posted 1 year ago #
Have you try these plugins?
1) http://bbpress.org/plugins/topic/xili-new-post-notification/
2) http://bbpress.org/plugins/topic/post-notification/ -
- Posted 1 year ago #
Yes of course, but i need to develope my own plugin ...
-
- Posted 1 year ago #
Why can't you just modify one of those plugins by a little in order to fit your needs? You'd save a lot of work! :)
-
- Posted 1 year ago #
I need to develope a plugin that, at the end, post email notification to no anonymous post in bbpress trunk version (like subscribe to comment in wordpress).
-
You must log in to post.