Filter hook 'update_welcome_email'
in WP Core File wp-includes/ms-functions.php at line 1665
Description
Filters the content of the welcome email sent to the site administrator after site activation. Content should be formatted for transmission via wp_mail().
Occurrences
Filename |
Line Number |
wp-includes/ms-functions.php |
1665 |
Parameters
Type |
Name |
Description |
string |
$welcome_email |
Message body of the email. |
int |
$blog_id |
Site ID. |
int |
$user_id |
User ID of the site administrator. |
string |
$password |
User password, or "N/A" if the user account is not new. |
string |
$title |
Site title. |
array |
$meta |
Signup meta data. By default, contains the requested privacy setting and lang_id. |
PHP Doc
/**
* Filters the content of the welcome email sent to the site administrator after site activation.
*
* Content should be formatted for transmission via wp_mail().
*
* @since MU (3.0.0)
*
* @param string $welcome_email Message body of the email.
* @param int $blog_id Site ID.
* @param int $user_id User ID of the site administrator.
* @param string $password User password, or "N/A" if the user account is not new.
* @param string $title Site title.
* @param array $meta Signup meta data. By default, contains the requested privacy setting and lang_id.
*/