admin_created_user_email()

最后更新于:2021-11-25 19:46:14

admin_created_user_email( string$text)

参数

$text

(string) (Required)

响应

(string)

源文件

文件: gc-admin/includes/user.php

function admin_created_user_email( $text ) {
	$roles = get_editable_roles();
	$role  = $roles[ $_REQUEST['role'] ];

	return sprintf(
		/* translators: 1: Site title, 2: Site URL, 3: User role. */
		__(
			'Hi,
You've been invited to join '%1$s' at
%2$s with the role of %3$s.
If you do not want to join this site please ignore
this email. This invitation will expire in a few days.

Please click the following link to activate your user account:
%%s'
		),
		gc_specialchars_decode( get_bloginfo( 'name' ), ENT_QUOTES ),
		home_url(),
		gc_specialchars_decode( translate_user_role( $role['name'] ) )
	);
}