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? Quote 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. Quote 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. Quote Link to comment https://forums.phpfreaks.com/topic/149833-newsletters/#findComment-786891 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.