I want to add some xprofile fields in bp_core_signup_user e-mail that I sent to the site admin if a new Buddypress user has signed up. Any Idea what I'm doing wrong?
/* Sends custom pending notification e-mail to WP admin */
function my_pending( $user_id, $user_login, $user_password, $user_email, $usermeta ) {
$field1 = xprofile_get_field_data( 11, $user_id );
$field2 = xprofile_get_field_data( 12, $user_id );
$field3 = xprofile_get_field_data( 4, $user_id );
wp_mail( "example@example.com", $user_login . "bla bla", "bla bla $field1, $field2, $field3" );
}
add_action( 'bp_core_signup_user', 'my_pending', 10, 5 );