Forum Moderators: open
My question is:
*Is there a way to use javascript w/ php to automate a newsletter to send every 30 mins to a different group of emails?
I currently have a way to poll out a set number of emails at a time into an array, but can this be automated?
Any comments or suggestions welcomed, thanks!
- you will want to execute the timed emailings with a cron job
- you will want to record each mailing somewhere in your database so you can review which emails were sent, and when
- emailing from the server-side in an automated process is by far less demanding that a web-initiated process
- a server-side process is probably much more secure because you shouldn't have it accessible by the web in any way