Hi
i have a function that i really think is needed in the newsletter.
i am on servage. and know that servage have a function that not allow to send out more than 100 mails every 30 min.
so the way this newsletter is not. i cant sendt out newsletters becores i have more than 800 subscripe users.
how can i fix this. is there a function in the newsletter, where i can fix this ?
what dows this code do ?
Code if ($rows == 1 || $i == 99) {
if (!sendemail($settings['siteusername'],$settings['siteemail'],$settings['siteusername'],$settings['siteemail'],$subject,$content,$_POST['format'],"", $bcc_list)) {
$error = $locale['NL418'];
}
$bcc_list = "";
}
if ($i != 99) { $i++; } else { $i = 1; }
$rows--;
}
}
if i change the 99 to ect. 20, will this help og will it only send out 20 mails ?
i i cahnges it to 20, how often, will it send out mails ? |