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.
4854<?php4855 * @type string $description Description of the action being performed so the user knows what the email is for.4856 * @type string $confirm_url The link to click on to confirm the account action.4857 * @type string $sitename The site name sending the mail.4858 * @type string $siteurl The site URL sending the mail.4859 * }4860 */4861 $subject = apply_filters( 'user_request_action_email_subject', $subject, $email_data['sitename'], $email_data );48624863 /* translators: Do not translate DESCRIPTION, CONFIRM_URL, SITENAME, SITEURL: those are placeholders. */4864 $content = __(4865 'Howdy,48664867A 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.