Forums

Join
bbPress Support ForumsPluginsHelp for my plugin "admin notification"

Info

Tags

Help for my plugin "admin notification"

  1. 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 ...

  2. Yes of course, but i need to develope my own plugin ...

  3. 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! :)

  4. 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).

  5. You must log in to post.