skip to Main Content

WordPress Code Snippets


How to Enable Friend Request Notification in BuddyPress

Notify users via email when a friend request is received.

// Send a notification when a friend request is received
function send_friend_request_notification($user_id) {
    $user_info = get_userdata($user_id);
    wp_mail($user_info->user_email, 'You Have a New Friend Request', 'You have a new friend request.');
}
add_action('bp_friendship_created', 'send_friend_request_notification');


I’m a WordPress developer with 10+ years of experience in WooCommerce and custom plugins. I combine technical expertise with design flair to help you create standout, user-friendly websites. Let’s transform your digital presence!

Best WordPress Hosting
Back To Top