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.
$content, $email_data
Sortie :
@param string $content The email content.
@param array $email_data {
// 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;
}
Chargement des actualités...