Filters the subject of the email sent when an account action is attempted.
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 $email The email address this is being sent to. @type string $description Description of the action being performed so the user knows what the email is for. @type string $confirm_url The link to click on to confirm the account action. @type string $sitename The site name sending the mail. @type string $siteurl The site URL sending the mail.}
$requestWP_User_Request
User request object.
$emailstring
The email address this is being sent to.
$descriptionstring
Description of the action being performed so the user knows what the email is for.
$confirm_urlstring
The link to click on to confirm the account action.
4954<?php4955 * @type string $description Description of the action being performed so the user knows what the email is for.4956 * @type string $confirm_url The link to click on to confirm the account action.4957 * @type string $sitename The site name sending the mail.4958 * @type string $siteurl The site URL sending the mail.4959 * }4960 */4961 $subject = apply_filters( 'user_request_action_email_subject', $subject, $email_data['sitename'], $email_data );49624963 /* translators: Do not translate DESCRIPTION, CONFIRM_URL, SITENAME, SITEURL: those are placeholders. */4964 $content = __(4965 'Howdy,49664967A request has been made to perform the following action on your account:
History
Introduced in 4.9.6. Unchanged from 6.7.7 through 7.1.0.