user_erasure_complete_email_subject filter-hookWP 4.9.8

Deprecated from version 5.8.0. It is no longer supported and can be removed in future releases. See user_erasure_fulfillment_email_subject.

Filters the subject of the email sent when an erasure request is completed.

Usage

add_filter( 'user_erasure_complete_email_subject', 'wp_kama_user_erasure_complete_email_subject_filter', 10, 3 );

/**
 * Function for `user_erasure_complete_email_subject` filter-hook.
 * 
 * @param string $subject    The email subject.
 * @param string $sitename   The name of the site.
 * @param array  $email_data Data relating to the account action email.
 *
 * @return string
 */
function wp_kama_user_erasure_complete_email_subject_filter( $subject, $sitename, $email_data ){

	// filter...
	return $subject;
}
$subject(string)
The email subject.
$sitename(string)
The name of the site.
$email_data(array)

Data relating to the account action email.

  • request(WP_User_Request)
    User request object.

  • message_recipient(string)
    The address that the email will be sent to.
    Default: value of $request->email, but can be changed by the user_erasure_fulfillment_email_to filter

  • privacy_policy_url(string)
    Privacy policy URL.

  • sitename(string)
    The site name sending the mail.

  • siteurl(string)
    The site URL sending the mail.

Changelog

Since 4.9.8 Introduced.
Deprecated since 5.8.0 Use {@see 'user_erasure_fulfillment_email_subject'} instead.

Where the hook is called

_wp_privacy_send_erasure_fulfillment_notification()
user_erasure_complete_email_subject
wp-includes/user.php 4323-4328
$subject = apply_filters_deprecated(
	'user_erasure_complete_email_subject',
	array( $subject, $email_data['sitename'], $email_data ),
	'5.8.0',
	'user_erasure_fulfillment_email_subject'
);

Where the hook is used in WordPress

Usage not found.