tibberous Posted March 16, 2010 Share Posted March 16, 2010 I am trying to send an email to approx 2,000 people every time a new event is added to a calendar. I'm guessing that I can't just call mail() 2,000 times, but I'm not real sure how to do this. I was thinking either a cron job that was called every minute, or a script that could be started from the webpage that would run in the background and process a queue. Ideas? Link to comment https://forums.phpfreaks.com/topic/195443-bulk-mailing-not-spam/ Share on other sites More sharing options...
aeroswat Posted March 16, 2010 Share Posted March 16, 2010 cron job would probably be best. Depending on the host they may see it as spam if you looped through and did 2,000 emails Link to comment https://forums.phpfreaks.com/topic/195443-bulk-mailing-not-spam/#findComment-1027002 Share on other sites More sharing options...
StathisG Posted March 16, 2010 Share Posted March 16, 2010 You can e-mail the same e-mail to multiple users by calling the mail function once and add all the e-mails as bcc (Blind Carbon Copy). Link to comment https://forums.phpfreaks.com/topic/195443-bulk-mailing-not-spam/#findComment-1027003 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.