apply_filters( ‘update_welcome_user_email’, string $welcome_email, int $user_id, string $password, array $meta )

In this article

Filters the content of the welcome email after user activation.

Description

Content should be formatted for transmission via wp_mail() .

Parameters

$welcome_emailstring
The message body of the account activation success email.
$user_idint
User ID.
$passwordstring
User password.
$metaarray
Signup meta data. Default empty array.

Source

$welcome_email = apply_filters( 'update_welcome_user_email', $welcome_email, $user_id, $password, $meta );

Changelog

VersionDescription
MU (3.0.0)Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.