I'm trying to email to an array of subscribers to a weekly newsletter. Whenever I try though, I get an error "Bad parameters to function mail()". Heres the loop I'm using to mail:
$x = 0;
$y = 1;
while ($x <= $y)
{
mail($names[$x], "Hey", "Whats up?");
$x++;
}
Any help would be appreciated, thanks.