user_erasure_fulfillment_email_subject

过滤钩子
apply_filters( 'user_erasure_fulfillment_email_subject', $subject, $email_data['sitename'], $email_data )
参数
  • (string) $subject The email subject.
    Required:
  • (string) $sitename The name of the site.
    Required:
  • (array) $email_data { Data relating to the account action email. @type WP_User_Request $request User request object. @type string $message_recipient The address that the email will be sent to. Defaults to the value of `$request->email`, but can be changed by the `user_erasure_fulfillment_email_to` filter. @type string $privacy_policy_url Privacy policy URL. @type string $sitename The site name sending the mail. @type string $siteurl The site URL sending the mail. }
    Required:
定义位置
相关勾子
user_erasure_fulfillment_email_touser_erasure_fulfillment_email_contentuser_erasure_fulfillment_email_headersuser_request_confirmed_email_subjectuser_request_action_email_subject
相关方法
_wp_privacy_send_erasure_fulfillment_notification
引入
5.8.0
弃用
-

user_erasure_fulfillment_email_subject:这是一个 WordPress 过滤器钩子,允许您修改在满足用户的个人数据擦除请求后发送给用户的电子邮件的主题行。 此钩子在生成电子邮件时触发,它允许您在发送电子邮件之前修改电子邮件的主题行。

过滤删除请求完成时发送的电子邮件的主题。

$subject = apply_filters( 'user_erasure_fulfillment_email_subject', $subject, $email_data['sitename'], $email_data );

常见问题

FAQs
查看更多 >