the "Enable comment notification" is already enabled and a valid email address is set for the Admin.
If I use the code below in a page, I receive the email in my email address, so I don't understand why I don't get the one from the comment
<?php
$to = "myaddress@ddd.com";
$subject = "Hi!";
$body = "Hi,\n\nHow are you?";
$headers = "From: anotheraddress@ddd.com\r\n" .
"X-Mailer: php";
if (mail($to, $subject, $body, $headers)) {
echo("<p>Message sent!</p>");
} else {
echo("<p>Message delivery failed...</p>");
}
?>