acidglitter Posted March 17, 2009 Share Posted March 17, 2009 For the site I'm working on they want an email newsletter. Are there any good programs out there for this? Or should I just make like a simple php script that would mail everyone signed up for it? Link to comment https://forums.phpfreaks.com/topic/149833-newsletters/ Share on other sites More sharing options...
Festy Posted March 17, 2009 Share Posted March 17, 2009 You don't need any programs for this. Just a simple php script will do. Link to comment https://forums.phpfreaks.com/topic/149833-newsletters/#findComment-786808 Share on other sites More sharing options...
JonnoTheDev Posted March 17, 2009 Share Posted March 17, 2009 Swiftmailer http://swiftmailer.org/ PEAR::Mail http://pear.php.net/package/Mail PEAR::Mail_Queue http://pear.php.net/package/Mail_Queue Dont loop through thousands of email addresses using the mail() function. This is a bad idea as it will open and close an SMTP socket for every email which is inefficient. Link to comment https://forums.phpfreaks.com/topic/149833-newsletters/#findComment-786891 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.