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.
4895<?php4896 * @type string $description Description of the action being performed so the user knows what the email is for.4897 * @type string $confirm_url The link to click on to confirm the account action.4898 * @type string $sitename The site name sending the mail.4899 * @type string $siteurl The site URL sending the mail.4900 * }4901 */4902 $subject = apply_filters( 'user_request_action_email_subject', $subject, $email_data['sitename'], $email_data );49034904 /* translators: Do not translate DESCRIPTION, CONFIRM_URL, SITENAME, SITEURL: those are placeholders. */4905 $content = __(4906 'Howdy,49074908A 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.