Changeset 49028 for trunk/src/wp-includes/user.php
- Timestamp:
- 09/21/2020 04:44:35 PM (5 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/user.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/user.php
r48782 r49028 2050 2050 * 2051 2051 * @param array $pass_change_email { 2052 * Used to build wp_mail().2052 * Used to build wp_mail(). 2053 2053 * 2054 * @type string $to The intended recipients. Add emails in a comma separated string.2055 * @type string $subject The subject of the email.2056 * @type string $message The content of the email.2057 * The following strings have a special meaning and will get replaced dynamically:2058 * - ###USERNAME### The current user's username.2059 * - ###ADMIN_EMAIL### The admin email in case this was unexpected.2060 * - ###EMAIL### The user's email address.2061 * - ###SITENAME### The name of the site.2062 * - ###SITEURL### The URL to the site.2063 * @type string $headers Headers. Add headers in a newline (\r\n) separated string.2064 * }2054 * @type string $to The intended recipients. Add emails in a comma separated string. 2055 * @type string $subject The subject of the email. 2056 * @type string $message The content of the email. 2057 * The following strings have a special meaning and will get replaced dynamically: 2058 * - ###USERNAME### The current user's username. 2059 * - ###ADMIN_EMAIL### The admin email in case this was unexpected. 2060 * - ###EMAIL### The user's email address. 2061 * - ###SITENAME### The name of the site. 2062 * - ###SITEURL### The URL to the site. 2063 * @type string $headers Headers. Add headers in a newline (\r\n) separated string. 2064 * } 2065 2065 * @param array $user The original user array. 2066 2066 * @param array $userdata The updated user array. … … 2108 2108 * 2109 2109 * @param array $email_change_email { 2110 * Used to build wp_mail().2110 * Used to build wp_mail(). 2111 2111 * 2112 * @type string $to The intended recipients.2113 * @type string $subject The subject of the email.2114 * @type string $message The content of the email.2115 * The following strings have a special meaning and will get replaced dynamically:2116 * - ###USERNAME### The current user's username.2117 * - ###ADMIN_EMAIL### The admin email in case this was unexpected.2118 * - ###NEW_EMAIL### The new email address.2119 * - ###EMAIL### The old email address.2120 * - ###SITENAME### The name of the site.2121 * - ###SITEURL### The URL to the site.2122 * @type string $headers Headers.2123 * }2112 * @type string $to The intended recipients. 2113 * @type string $subject The subject of the email. 2114 * @type string $message The content of the email. 2115 * The following strings have a special meaning and will get replaced dynamically: 2116 * - ###USERNAME### The current user's username. 2117 * - ###ADMIN_EMAIL### The admin email in case this was unexpected. 2118 * - ###NEW_EMAIL### The new email address. 2119 * - ###EMAIL### The old email address. 2120 * - ###SITENAME### The name of the site. 2121 * - ###SITEURL### The URL to the site. 2122 * @type string $headers Headers. 2123 * } 2124 2124 * @param array $user The original user array. 2125 2125 * @param array $userdata The updated user array.
Note: See TracChangeset
for help on using the changeset viewer.