apply_filters( ‘wpmu_signup_user_notification_email’, string $content, string $user_login, string $user_email, string $key, array $meta )

In this article

Filters the content of the notification email for new user sign-up.

Description

Content should be formatted for transmission via wp_mail() .

Parameters

$contentstring
Content of the notification email.
$user_loginstring
User login name.
$user_emailstring
User email address.
$keystring
Activation key created in wpmu_signup_user() .
$metaarray
Signup meta data. Default empty array.

Source

apply_filters(
	'wpmu_signup_user_notification_email',
	/* translators: New user notification email. %s: Activation URL. */
	__( "To activate your user, please click the following link:\n\n%s\n\nAfter you activate, you will receive *another email* with your login." ),
	$user_login,
	$user_email,
	$key,
	$meta
),

Changelog

VersionDescription
MU (3.0.0)Introduced.

User Contributed Notes

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