# wp_new_user_notification()

URL: https://chugunov.pro/api-wordpress/functions/wp_new_user_notification/
Проверено на WordPress 6.9, обновлено 06.08.2026.
Источник: независимый русскоязычный справочник chugunov.pro. Не является официальной документацией WordPress.

Тип: функция.
Появился в версии: 2.0.0.

> Устаревший элемент. Помечен устаревшим с версии 4.3.1.

## Сигнатура

```php
wp_new_user_notification( int $user_id, mixed $deprecated = null, string $notify = '' )
```

## Описание

Уведомление о регистрации нового пользователя также отправляется на адрес электронной почты администратора.

## Параметры

- `$user_id` `int` — обязательный. ID пользователя.
- `$deprecated` `mixed` — необязательный, по умолчанию `null`. Не используется.
- `$notify` `string` — необязательный, по умолчанию `''`. Тип отправляемого уведомления. Принимает 'admin' или пустую строку (только администратору), 'user' или 'both' (администратору и пользователю).

## Исходный код

Файл: `wp-includes/pluggable.php:2270`

```php
function wp_new_user_notification( $user_id, $deprecated = null, $notify = '' ) {
	if ( null !== $deprecated ) {
		_deprecated_argument( __FUNCTION__, '4.3.1' );
	}

	// Accepts only 'user', 'admin' , 'both' or default '' as $notify.
	if ( ! in_array( $notify, array( 'user', 'admin', 'both', '' ), true ) ) {
		return;
	}

	$user = get_userdata( $user_id );

	/*
	 * The blogname option is escaped with esc_html() on the way into the database in sanitize_option().
	 * We want to reverse this for the plain text arena of emails.
	 */
	$blogname = wp_specialchars_decode( get_option( 'blogname' ), ENT_QUOTES );

	/**
	 * Filters whether the admin is notified of a new user registration.
	 *
	 * @since 6.1.0
	 *
	 * @param bool    $send Whether to send the email. Default true.
	 * @param WP_User $user User object for new user.
	 */
	$send_notification_to_admin = apply_filters( 'wp_send_new_user_notification_to_admin', true, $user );

	if ( 'user' !== $notify && true === $send_notification_to_admin ) {

		$admin_user = get_user_by( 'email', get_option( 'admin_email' ) );

		if ( $admin_user ) {
			$switched_locale = switch_to_user_locale( $admin_user->ID );
		} else {
			$switched_locale = switch_to_locale( get_locale() );
		}

		/* translators: %s: Site title. */
		$message = sprintf( __( 'New user registration on your site %s:' ), $blogname ) . "\r\n\r\n";
		/* translators: %s: User login. */
		$message .= sprintf( __( 'Username: %s' ), $user->user_login ) . "\r\n\r\n";
		/* translators: %s: User email address. */
		$message .= sprintf( __( 'Email: %s' ), $user->user_email ) . "\r\n";

		$wp_new_user_notification_email_admin = array(
			'to'      => get_option( 'admin_email' ),
			/* translators: New user registration notification email subject. %s: Site title. */
			'subject' => __( '[%s] New User Registration' ),
			'message' => $message,
			'headers' => '',
		);

		/**
		 * Filters the contents of the new user notification email sent to the site admin.
		 *
		 * @since 4.9.0
		 *
		 * @param array   $wp_new_user_notification_email_admin {
		 *     Used to build wp_mail().
		 *
		 *     @type string $to      The intended recipient - site admin email address.
		 *     @type string $subject The subject of the email.
		 *     @type string $message The body of the email.
		 *     @type string $headers The headers of the email.
		 * }
		 * @param WP_User $user     User object for new user.
		 * @param string  $blogname The site title.
		 */
		$wp_new_user_notification_email_admin = apply_filters( 'wp_new_user_notification_email_admin', $wp_new_user_notification_email_admin, $user, $blogname );

		wp_mail(
			$wp_new_user_notification_email_admin['to'],
			wp_specialchars_decode( sprintf( $wp_new_user_notification_email_admin['subject'], $blogname ) ),
			$wp_new_user_notification_email_admin['message'],
			$wp_new_user_notification_email_admin['headers']
		);

		if ( $switched_locale ) {
			restore_previous_locale();
		}
	}

	/**
	 * Filters whether the user is notified of their new user registration.
	 *
	 * @since 6.1.0
	 *
	 * @param bool    $send Whether to send the email. Default true.
	 * @param WP_User $user User object for new user.
	 */
	$send_notification_to_user = apply_filters( 'wp_send_new_user_notification_to_user', true, $user );

	// `$deprecated` was pre-4.3 `$plaintext_pass`. An empty `$plaintext_pass` didn't sent a user notification.
	if ( 'admin' === $notify || true !== $send_notification_to_user || ( empty( $deprecated ) && empty( $notify ) ) ) {
		return;
	}

	$key = get_password_reset_key( $user );
	if ( is_wp_error( $key ) ) {
		return;
	}

	$switched_locale = switch_to_user_locale( $user_id );

	/* translators: %s: User login. */
	$message  = sprintf( __( 'Username: %s' ), $user->user_login ) . "\r\n\r\n";
	$message .= __( 'To set your password, visit the following address:' ) . "\r\n\r\n";

	/*
	 * Since some user login names end in a period, this could produce ambiguous URLs that
	 * end in a period. To avoid the ambiguity, ensure that the login is not the last query
	 * arg in the URL. If moving it to the end, a trailing period will need to be escaped.
	 *
	 * @see https://core.trac.wordpress.org/tickets/42957
	 */
	$message .= network_site_url( 'wp-login.php?login=' . rawurlencode( $user->user_login ) . "&key=$key&action=rp", 'login' ) . "\r\n";

	$wp_new_user_notification_email = array(
		'to'      => $user->user_email,
		/* translators: Login details notification email subject. %s: Site title. */
		'subject' => __( '[%s] Login Details' ),
		'message' => $message,
		'headers' => '',
	);

	/**
	 * Filters the contents of the new user notification email sent to the new user.
	 *
	 * @since 4.9.0
	 *
	 * @param array   $wp_new_user_notification_email {
	 *     Used to build wp_mail().
	 *
	 *     @type string $to      The intended recipient - New user email address.
	 *     @type string $subject The subject of the email.
	 *     @type string $message The body of the email.
	 *     @type string $headers The headers of the email.
	 * }
	 * @param WP_User $user     User object for new user.
	 * @param string  $blogname The site title.
	 */
	$wp_new_user_notification_email = apply_filters( 'wp_new_user_notification_email', $wp_new_user_notification_email, $user, $blogname );

	wp_mail(
		$wp_new_user_notification_email['to'],
		wp_specialchars_decode( sprintf( $wp_new_user_notification_email['subject'], $blogname ) ),
		$wp_new_user_notification_email['message'],
		$wp_new_user_notification_email['headers']
	);

	if ( $switched_locale ) {
		restore_previous_locale();
	}
}
```

## История изменений

- 4.6.0 — The $notify parameter accepts 'user' for sending notification only to the user created.
- 4.3.1 — The $plaintext_pass parameter was deprecated. $notify added as a third parameter.
- 4.3.0 — The $plaintext_pass parameter was changed to $notify.
- 2.0.0 — Introduced.

## Связанные

Использует: [`switch_to_user_locale`](https://chugunov.pro/api-wordpress/functions/switch_to_user_locale/), [`restore_previous_locale`](https://chugunov.pro/api-wordpress/functions/restore_previous_locale/), [`switch_to_locale`](https://chugunov.pro/api-wordpress/functions/switch_to_locale/), [`get_password_reset_key`](https://chugunov.pro/api-wordpress/functions/get_password_reset_key/), [`get_locale`](https://chugunov.pro/api-wordpress/functions/get_locale/), [`wp_specialchars_decode`](https://chugunov.pro/api-wordpress/functions/wp_specialchars_decode/), [`get_user_by`](https://chugunov.pro/api-wordpress/functions/get_user_by/), [`wp_mail`](https://chugunov.pro/api-wordpress/functions/wp_mail/), [`network_site_url`](https://chugunov.pro/api-wordpress/functions/network_site_url/), [`__`](https://chugunov.pro/api-wordpress/functions/__/), [`get_userdata`](https://chugunov.pro/api-wordpress/functions/get_userdata/), [`_deprecated_argument`](https://chugunov.pro/api-wordpress/functions/_deprecated_argument/), [`apply_filters`](https://chugunov.pro/api-wordpress/functions/apply_filters/), [`get_option`](https://chugunov.pro/api-wordpress/functions/get_option/), [`is_wp_error`](https://chugunov.pro/api-wordpress/functions/is_wp_error/).
Используется в: [`wp_send_new_user_notifications`](https://chugunov.pro/api-wordpress/functions/wp_send_new_user_notifications/).

Оригинал в официальной документации: https://developer.wordpress.org/reference/functions/wp_new_user_notification/
