group_messages_notification_new_message( array $raw_args = array() )

Email message recipients to alert them of a new unread group message.

Description

Parameters

$raw_args

(Optional)

Default value: array()

Source

File: bp-messages/bp-messages-functions.php

796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
function group_messages_notification_new_message( $raw_args = array() ) {
    if ( is_object( $raw_args ) ) {
        $args = (array) $raw_args;
    } else {
        $args = $raw_args;
    }
 
    // These should be extracted below.
    $recipients    = array();
    $email_subject = $subject = $email_content = '';
    $sender_id     = $id = 0;
 
    // Barf.
    extract( $args );
 
    if ( empty( $recipients ) ) {
        return;
    }
 
    $sender_name = bp_core_get_user_displayname( $sender_id );
 
    if ( isset( $message ) ) {
        $message = wpautop( $message );
    } else {
        $message = '';
    }
 
    // Send an email to each recipient.
    foreach ( $recipients as $recipient ) {
        if ( $sender_id == $recipient->user_id || 'no' == bp_get_user_meta( $recipient->user_id, 'notification_messages_new_message', true ) ) {
            continue;
        }
 
        // User data and links.
        $ud = get_userdata( $recipient->user_id );
        if ( empty( $ud ) ) {
            continue;
        }
 
        $unsubscribe_args = array(
            'user_id'           => $recipient->user_id,
            'notification_type' => 'group-message-email',
        );
 
        $group      = bp_messages_get_meta( $id, 'group_id', true );
        $group_name = bp_get_group_name( groups_get_group( $group ) );
 
        bp_send_email(
            'group-message-email',
            $ud,
            array(
                'tokens' => array(
                    'message_id'  => $id,
                    'usermessage' => stripslashes( $message ),
                    'message'     => stripslashes( $message ),
                    'message.url' => esc_url( bp_core_get_user_domain( $recipient->user_id ) . bp_get_messages_slug() . '/view/' . $thread_id . '/' ),
                    'sender.name' => $sender_name,
                    'usersubject' => sanitize_text_field( stripslashes( $subject ) ),
                    'group.name'  => $group_name,
                    'unsubscribe' => esc_url( bp_email_get_unsubscribe_link( $unsubscribe_args ) ),
                ),
            )
        );
    }
 
    /**
     * Fires after the sending of a new group message email notification.
     *
     * @since BuddyPress 1.5.0
     * @deprecated 2.5.0 Use the filters in BP_Email.
     *                   $email_subject and $email_content arguments unset and deprecated.
     *
     * @param array  $recipients    User IDs of recipients.
     * @param string $email_subject Deprecated in 2.5; now an empty string.
     * @param string $email_content Deprecated in 2.5; now an empty string.
     * @param array  $args          Array of originally provided arguments.
     */
    do_action( 'group_messages_notification_new_message', $recipients, '', '', $args );
}

Changelog

Changelog
Version Description
BuddyBoss 1.2.9 Introduced.

Questions?

We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.