bp_core_signup_send_activation_key_multisite
bp_core_signup_send_activation_key_multisite
Appears in: buddypress.10.1.0, buddypress.10.2.0, buddypress.10.3.0, buddypress.10.4.0, buddypress.10.5.0, buddypress.10.6.0, buddypress.11.0.0, buddypress.11.1.0, buddypress.11.2.0, buddypress.11.3.2, buddypress.11.4.0, buddypress.12.0.0, buddypress.12.1.1, buddypress.12.2.0, buddypress.12.3.0, buddypress.12.4.0, buddypress.12.4.1, buddypress.12.5.0, buddypress.12.5.1, buddypress.14.0.0, buddypress.14.1.0, buddypress.14.2.1, buddypress.14.3.3
Hook Type: filter
See hook in action
Displaying hooks found in version: buddypress.14.3.3apply_filters('bp_core_signup_send_activation_key_multisite') is found 1 times:
- /bp-core/bp-core-filters.php line 634630631632633634635636637638639640
* @param string
$user_email
The user's email address.
* @param string
$key
The activation key created in wpmu_signup_blog().
* @param bool
$is_signup_resend
Is the site admin sending this email?
*/
if
( apply_filters(
'bp_core_signup_send_activation_key_multisite'
, true,
$user
,
$user_email
,
$key
,
$is_signup_resend
) ) {
bp_send_email(
'core-user-registration'
,
array
(
array
(
$user_email
=>
$salutation
) ),
$args
);
}
// Return false to stop the original WPMU function from continuing.
return
false;
}