user_erasure_fulfillment_email_content

FILTER wp-includes\user.php (ligne 4609) github
Filters the body of the data erasure fulfillment notification. The email is sent to a user when their data erasure request is fulfilled by an administrator. The following strings have a special meaning and will get replaced dynamically:  - `###SITENAME###`           The name of the site.  - `###PRIVACY_POLICY_URL###` Privacy policy page URL.  - `###SITEURL###`            The URL to the site.

Paramètres

Entrée :
$content, $email_data
Sortie :
@param string $content The email content.
@param array  $email_data {

Utilisation

// Modifier la valeur avec le filtre 'user_erasure_fulfillment_email_content'
add_filter('user_erasure_fulfillment_email_content', 'ma_fonction_filtre', 10, 1);

function ma_fonction_filtre($content) {
    // Modifier la valeur
    return $content;
}

Actualités

Chargement des actualités...