Hi
I install Email log
To have notification I contact the WP add author and change code in function.php theme with that :
add_filter("adverts_action_save", "my_adverts_action_save");
function my_adverts_action_save($content) {
wp_mail( "[email protected]", "New add", "New add posted ");
return $content;
}
Only this mail are in log.
No log for BNWP.
When I clic “test” the mail it works and i can see good log.
But nothing when a new add is posted.