I plan to do a project,the problem is I have to send out 800 email with PHP.do you think if I can do it with PHP mail function and loop structure?
Any other idea?
Thanks a lot.
Yes, PHP with a loop structure is a viable option for this problem
Id suggest in the loop format however after 100 or so stop it then have a next button to get the next 100. That way you wont have any lag or timeouts
I'd suggest getting an SMTP class and using that to send multiple emails. Be faster than sending 800 separate emails one at a time. Unless all those emails are different.
I want to send same Email to 800 email address.which class I can use?
Thanks
Maybe one of these will suit your task.