apply_filters( 'wp_new_user_notification_email', array $wp_new_user_notification_email , WP_User $user , string $blogname )
Filters the contents of the new user notification email sent to the new user.
Parameters
-
$wp_new_user_notification_email
array -
Used to build wp_mail() .
to
stringThe intended recipient - New user email address.subject
stringThe subject of the email.message
stringThe body of the email.headers
stringThe headers of the email.
-
$user
WP_User -
User object for new user.
-
$blogname
string -
The site title.
Source
File: wp-includes/pluggable.php
.
View all references
$wp_new_user_notification_email = apply_filters( 'wp_new_user_notification_email', $wp_new_user_notification_email, $user, $blogname );
Changelog
Version | Description |
---|---|
4.9.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.
Actually I found a function that does it pretty painlessly – parse_str – takes the variables out of a URLfunction fp_wp_new_user_notification_email( $array, $user, $blogname ) { parse_str( $array[‘message’] ); . . . And now my function contains all the variables in the URL, including $key, with the same names!