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_emailarray
Used to build wp_mail() .
  • to string
    The intended recipient – New user email address.
  • subject string
    The subject of the email.
  • message string
    The body of the email.
  • headers string
    The headers of the email.
$userWP_User
User object for new user.
$blognamestring
The site title.

Source

$wp_new_user_notification_email = apply_filters( 'wp_new_user_notification_email', $wp_new_user_notification_email, $user, $blogname );

Changelog

VersionDescription
4.9.0Introduced.

User Contributed Notes

  1. Skip to note 3 content

    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!

  2. Skip to note 4 content
    /**
     * Filter the new user notification email.
     *
     * @param $email array New user notification email parameters.
     * @return $email array New user notification email parameters.
     */
    function myplugin_new_user_notification_email_callback( $email ) {
    	$email['message'] .= "\r\n" . __( 'Thank you for register on site.', 'textdomain' );
    	return $email;
    }
    
    add_filter( 'wp_new_user_notification_email', 'myplugin_new_user_notification_email_callback' );

You must log in before being able to contribute a note or feedback.