I have a simple mailing list script that sends newsletter to around 600 subscribers.
However, half of the e-mails actually come back with an error. The error messages said that the e-mail account is not reachable.
Also for some reasons, after sending the newsletter, all of the e-mail accounts cannot be used for a while (can't send, receive, etc.)
I have checked the e-mail header and nothing seems to be wrong. The script sends a mail to each person going through the for loop.
i.e.
for($i = 0; $i < $num_of_subscribers; $i++)
{
mail(parameters for mail() function);
}
Does anyone have any ideas of what seems to be the problem??