Title: wp_send_new_user_notification_to_admin
Published: November 2, 2022
Last modified: May 20, 2026

---

# apply_filters( ‘wp_send_new_user_notification_to_admin’, bool $send, WP_User $user )

## In this article

 * [Parameters](https://developer.wordpress.org/reference/hooks/wp_send_new_user_notification_to_admin/?output_format=md#parameters)
 * [Source](https://developer.wordpress.org/reference/hooks/wp_send_new_user_notification_to_admin/?output_format=md#source)
 * [Related](https://developer.wordpress.org/reference/hooks/wp_send_new_user_notification_to_admin/?output_format=md#related)
 * [Changelog](https://developer.wordpress.org/reference/hooks/wp_send_new_user_notification_to_admin/?output_format=md#changelog)

[ Back to top](https://developer.wordpress.org/reference/hooks/wp_send_new_user_notification_to_admin/?output_format=md#wp--skip-link--target)

Filters whether the admin is notified of a new user registration.

## 󠀁[Parameters](https://developer.wordpress.org/reference/hooks/wp_send_new_user_notification_to_admin/?output_format=md#parameters)󠁿

 `$send`bool

Whether to send the email. Default true.

`$user`[WP_User](https://developer.wordpress.org/reference/classes/wp_user/)

User object for new user.

## 󠀁[Source](https://developer.wordpress.org/reference/hooks/wp_send_new_user_notification_to_admin/?output_format=md#source)󠁿

    ```php
    $send_notification_to_admin = apply_filters( 'wp_send_new_user_notification_to_admin', true, $user );
    ```

[View all references](https://developer.wordpress.org/reference/files/wp-includes/pluggable.php/)
[View on Trac](https://core.trac.wordpress.org/browser/tags/7.0/src/wp-includes/pluggable.php#L2296)
[View on GitHub](https://github.com/WordPress/wordpress-develop/blob/7.0/src/wp-includes/pluggable.php#L2296-L2296)

## 󠀁[Related](https://developer.wordpress.org/reference/hooks/wp_send_new_user_notification_to_admin/?output_format=md#related)󠁿

| Used by | Description | 
| [wp_new_user_notification()](https://developer.wordpress.org/reference/functions/wp_new_user_notification/)`wp-includes/pluggable.php` |

Emails login credentials to a newly-registered user.

  |

## 󠀁[Changelog](https://developer.wordpress.org/reference/hooks/wp_send_new_user_notification_to_admin/?output_format=md#changelog)󠁿

| Version | Description | 
| [6.1.0](https://developer.wordpress.org/reference/since/6.1.0/) | Introduced. |

## User Contributed Notes

You must [log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fdeveloper.wordpress.org%2Freference%2Fhooks%2Fwp_send_new_user_notification_to_admin%2F)
before being able to contribute a note or feedback.