<?php
add_action( 'transition_post_status', 'send_mails_on_publish', 10, 3 );
function send_mails_on_publish( $new_status, $old_status, $post ) {
if('product' == get_post_type( $post ) && // On vérifie si le post type correspond bien à celui que l'on veut filtrer
'publish' !== $old_status && // Comparaison avec l'ancien post status
'publish' === $new_status) { // Comparaison avec le nouveau post status
wp_mail( array('all@biznet-emarketing.com'), 'Objet', 'Texte du message' );
}
}
?>