Filters the body of the user request confirmation email. The email is sent to an administrator when a user request is confirmed. The following strings have a special meaning and will get replaced dynamically: - `###SITENAME###` The name of the site. - `###USER_EMAIL###` The user email for the request. - `###DESCRIPTION###` Description of the action being performed so the user knows what the email is for. - `###MANAGE_URL###` The URL to manage requests. - `###SITEURL###` The URL to the site.
$content, $email_data
Sortie :
@param string $content The email content.
@param array $email_data {
// Modifier la valeur avec le filtre 'user_request_confirmed_email_content'
add_filter('user_request_confirmed_email_content', 'ma_fonction_filtre', 10, 1);
function ma_fonction_filtre($content) {
// Modifier la valeur
return $content;
}
Chargement des actualités...