network_admin_email_change_email WordPress Filter Hook

The network_admin_email_change_email hook is called when a network administrator changes their email address. It allows for plugin and theme authors to hook into this process and perform custom actions. For example, a plugin might send an email notification to the old email address informing them of the change.

apply_filters( 'network_admin_email_change_email', array $email_change_email, string $old_email, string $new_email, int $network_id ) #

Filters the contents of the email notification sent when the network admin email address is changed.


Parameters

$email_change_email

(array)Used to build wp_mail().

  • 'to'
    (string) The intended recipient.
  • 'subject'
    (string) The subject of the email.
  • 'message'
    (string) The content of the email. The following strings have a special meaning and will get replaced dynamically:
    • ###OLD_EMAIL### The old network admin email address.
    • ###NEW_EMAIL### The new network admin email address.
    • ###SITENAME### The name of the network.
    • ###SITEURL### The URL to the site.
  • 'headers'
    (string) Headers.

$old_email

(string)The old network admin email address.

$new_email

(string)The new network admin email address.

$network_id

(int)ID of the network.


Top ↑

Source

File: wp-includes/ms-functions.php

View on Trac



Top ↑

Changelog

Changelog
VersionDescription
4.9.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.

Show More
Show More