Filters the subject of the user request confirmation email.
Parameters
$subjectstring
The email subject.
$sitenamestring
The name of the site.
$email_dataarray
{ Data relating to the account action email. @type WP_User_Request $request User request object. @type string $user_email The email address confirming a request. @type string $description Description of the action being performed so the user knows what the email is for. @type string $manage_url The link to click manage privacy requests of this type. @type string $sitename The site name sending the mail. @type string $siteurl The site URL sending the mail. @type string $admin_email The administrator email receiving the mail.}
$requestWP_User_Request
User request object.
$user_emailstring
The email address confirming a request.
$descriptionstring
Description of the action being performed so the user knows what the email is for.
$manage_urlstring
The link to click manage privacy requests of this type.
4322<?php4323 * @type string $manage_url The link to click manage privacy requests of this type.4324 * @type string $sitename The site name sending the mail.4325 * @type string $siteurl The site URL sending the mail.4326 * @type string $admin_email The administrator email receiving the mail.4327 * }4328 */4329 $subject = apply_filters( 'user_request_confirmed_email_subject', $subject, $email_data['sitename'], $email_data );43304331 /* translators: Do not translate SITENAME, USER_EMAIL, DESCRIPTION, MANAGE_URL, SITEURL; those are placeholders. */4332 $content = __(4333 'Howdy,43344335A user data privacy request has been confirmed on ###SITENAME###:
History
Introduced in 4.9.8. Unchanged from 6.7.7 through 7.1.0.