cetutnx1
New Member
- Messages
- 510
- Reaction score
- 0
- Points
- 0
Well a few days ago i've read in the server alerts forum that the php mail function was going to be limited, i've made an script (a newsletter) but the only way that i've found to send the mail to every one on the list, and that to field didn't have all the emails is:
as far as i've read this make the server go creazy when thew number of emails is bigger that 50
I want to know if there is any other (and better for the server) to do this
Thanks in advance.
PHP:
foreach($mails as $mail) {
mail($mail,$subject,$content,$headers);
}
as far as i've read this make the server go creazy when thew number of emails is bigger that 50
I want to know if there is any other (and better for the server) to do this
Thanks in advance.