Title: new_network_admin_email_content
Published: November 20, 2017
Last modified: May 20, 2026

---

# apply_filters( ‘new_network_admin_email_content’, string $email_text, array $new_admin_email )

## In this article

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

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

Filters the text of the email sent when a change of network admin email address 
is attempted.

## 󠀁[Description](https://developer.wordpress.org/reference/hooks/new_network_admin_email_content/?output_format=md#description)󠁿

The following strings have a special meaning and will get replaced dynamically:

 * `###USERNAME###` The current user’s username.
 * `###ADMIN_URL###` The link to click on to confirm the email change.
 * `###EMAIL###` The proposed new network admin email address.
 * `###SITENAME###` The name of the network.
 * `###SITEURL###` The URL to the network.

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

 `$email_text`string

Text in the email.

`$new_admin_email`array

Data relating to the new network admin email address.

 * `hash` string
 * The secure hash used in the confirmation link URL.
 * `newemail` string
 * The proposed new network admin email address.

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

    ```php
    $content = apply_filters( 'new_network_admin_email_content', $email_text, $new_admin_email );
    ```

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

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

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

Sends a confirmation request email when a change of network admin email address is attempted.

  |

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

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

## User Contributed Notes

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