I have a problem on sending message to email list(text file).
Code:
<?php
$to="emails.txt";
$subject="Hey";
$txt="Hello...";
mail($to,$subject,$txt);
?>
i do not have any syntax errors.... the msg is not sent to the emails list , that is the proplem here
Please advice and Thanks