I tried to send notification mail in PHP to my group email, but these updates, doesn't appear. the code is like this:
<?php
$to = "group_support@epu.my";
$subject = "test mail";
$message = "Hello! This is a simple email message.";
$from = "me@yahoo.com";
$headers = "From:" . $from;
mail($to,$subject,$message,$headers);
echo "Mail Sent.";
?>
FYI, group_support@epu.my contained a few members. i got this trouble since it was distributed mail group. but if the recipient is an individual mail, its working properly. did php not support distributed group mail?
Please help.


