Quantcast
Channel: WordPress.org Forums » All Topics
Viewing all articles
Browse latest Browse all 59525

BuddyPress Emails Not Logged

$
0
0

Replies: 0

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


Viewing all articles
Browse latest Browse all 59525

Trending Articles