• Any emails sent by BuddyPress are not logged.
    Plugin Version: 2.4.3

    In the EmailLogger class the following code is present within log_buddy_press_email():

    if ( $bp_mail instanceof \BP_Email ) {
        return;
    }

    I think it should be:

    if ( ! ( $bp_mail instanceof \BP_Email ) ) {
        return;
    }

    Also, line #162:

    'to' => array_shift( $bp_mail->get_to() )->get_address(),

    has error ‘Only variables can be passed by reference’.

  • The topic ‘BuddyPress Emails Not Logged’ is closed to new replies.