Opened 21 months ago
Closed 2 months ago
#9178 closed defect (bug) (maybelater)
When using 'bp_email_use_wp_mail' filter , Pending user activation sent emails count are shown as 0 by default even if email is sent
| Reported by: |
|
Owned by: | |
|---|---|---|---|
| Milestone: | Priority: | normal | |
| Severity: | normal | Version: | 12.5.0 |
| Component: | Emails | Keywords: | |
| Cc: |
Description
When using
add_filter( 'bp_email_use_wp_mail', 'return_true' );
when new user register to website , and activation email is sent
go to Users -> Manage Signups -> check emails sent is 0 to that user
that cause i don't know which users received emails and who didn't
activation emails recorded successfully in email log

Change History (2)
Note: See
TracTickets for help on using
tickets.
That's expected since you are bypassing the delivery of the email from BuddyPress core. I assume you would want us to duplicate that logic when this hook is used. But that would not be ideal, IMO.
I'd be interested to know why you are setting this to
true.