Filters the contents of the email sent to the site administrator when WordPress is installed.
$installed_emailarray$tostring
$subjectstring
$messagestring
$headersstring
$userWP_User$blog_titlestring$blog_urlstring$passwordstringwp-admin/includes/upgrade.php:623wp_new_blog_notification() * @param WP_User $user The site administrator user object. * @param string $blog_title The site title. * @param string $blog_url The site URL. * @param string $password The site administrator's password. Note that a placeholder message * is usually passed instead of the user's actual password. */ $installed_email = apply_filters( 'wp_installed_email', $installed_email, $user, $blog_title, $blog_url, $password ); wp_mail( $installed_email['to'], $installed_email['subject'], $installed_email['message'], $installed_email['headers']Introduced in 5.6.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.