user_erasure_fulfillment_email_content

过滤钩子
apply_filters( 'user_erasure_fulfillment_email_content', $content, $email_data )
参数
  • (string) $content The email content.
    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_subjectuser_erasure_fulfillment_email_headersuser_request_confirmed_email_contentuser_request_action_email_content
相关方法
_wp_privacy_send_erasure_fulfillment_notification_oembed_filter_feed_contentregister_block_core_comment_contentrender_block_core_comment_content
引入
5.8.0
弃用
-

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

过滤数据清除履行通知的正文。

当用户的数据删除请求被管理员满足时,该邮件会被发送给用户
的时候,这封邮件会发送给用户。

以下字符串有特殊含义,将被动态替换:

  • SITENAME### 网站的名称。
  • PRIVACY_POLICY_URL### 隐私政策页面URL。
  • SITEURL### 网站的URL。
$content = apply_filters( 'user_erasure_fulfillment_email_content', $content, $email_data );

常见问题

FAQs
查看更多 >