password_change_email

最后更新于:2021-11-27 13:46:34

apply_filters( ‘password_change_email’, array $pass_change_email, array $user, array $userdata )

Filters the contents of the email sent when the user’s password is changed.

参数

$pass_change_email

(array)
Used to build gc_mail().

  • ‘to’
    (string) The intended recipients. Add emails in a comma separated string.
  • ‘subject’
    (string) The subject of the email.
  • ‘message’
    (string) The content of the email. The following strings have a special meaning and will get replaced dynamically:

    • ###USERNAME### The current user’s username.
    • ###ADMIN_EMAIL### The admin email in case this was unexpected.
    • ###EMAIL### The user’s email address.
    • ###SITENAME### The name of the site.
    • ###SITEURL### The URL to the site.
  • ‘headers’
    (string) Headers. Add headers in a newline (rn) separated string.

$user

(array)
The original user array.

$userdata

(array)
The updated user array.

源文件

文件: gc-includes/user.php

View on Trac