walter1917 Posted August 6, 2009 Share Posted August 6, 2009 Hi all, I have a dedicated server and can setup any mail server (sendmail, postfix, etc...), I am trying to figure out how to set up for mass-mailing for subscription newsletter? How should you batch emails? Is there any simple to use schedulers/batchers available? -walter Link to comment https://forums.phpfreaks.com/topic/169134-bulkhigh-volume-email/ Share on other sites More sharing options...
Mardoxx Posted August 6, 2009 Share Posted August 6, 2009 foreach loop around mail() on $row['email']? IDK, there are ways of setting up mailing lists but I don't know how/what they do. I'd be interested to know Link to comment https://forums.phpfreaks.com/topic/169134-bulkhigh-volume-email/#findComment-892376 Share on other sites More sharing options...
mikesta707 Posted August 6, 2009 Share Posted August 6, 2009 I would do it by iterating through an array of email's, and emailing each one, one by one. but i've never done a mass email system before so i don't know if this is the best way Oh mardoxx beat me to it Link to comment https://forums.phpfreaks.com/topic/169134-bulkhigh-volume-email/#findComment-892378 Share on other sites More sharing options...
MatthewJ Posted August 6, 2009 Share Posted August 6, 2009 That is a good concept... often though Hosts or ISP's will only allow "x" number of emails per hour from a specific account to be sent, so you may want to be aware of that. In the past I have used a CRON job to run a script that would send 150 emails per hour which would stay under my host's limit of 200 per hour. Link to comment https://forums.phpfreaks.com/topic/169134-bulkhigh-volume-email/#findComment-892380 Share on other sites More sharing options...
jonsjava Posted August 6, 2009 Share Posted August 6, 2009 I actually wrote a script to do exactly the kind of thing you are wanting to do. Mail Group Solution if you need any help, let me know! Link to comment https://forums.phpfreaks.com/topic/169134-bulkhigh-volume-email/#findComment-892402 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.