Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm required to create a newsletter php application that would send template emails to all subscribed to the system users. We're currently using PostgreSQL so PhpList will not work for us if it's not capable to work with PostgreSQL.

What's the appropriate way of handling this task ? Also keep in mind that there will be big amounts of subscribers.

Edit: I'm opened to java applications that could do the trick..

Thanks in advance.

share|improve this question
@ax yes I kind of did it. most of the apps I saw were for mysql ? – tftd Feb 5 '11 at 16:26
1  
Check out this site www.thetutlage.com, they have video tutorials and are really helpful. I believe it's the best tutorial I have seen. – user868539 Jul 29 '11 at 1:06

2 Answers

Get Mailman:

http://www.gnu.org/software/mailman/index.html

Then send your newsletter to mailman (that's just one adress) and allow mailman to distribute the Newsletter to thousands of recipients (that you configure in Mailman). Of course there is other software besides Mailman, that can do just that...

share|improve this answer
up vote 1 down vote accepted

To make a custom newsletter daemon you can use System::Daemon. Try using this example for daemons: http://kevin.vanzonneveld.net/techblog/article/create_daemons_in_php/

Beware:
If you make daemons that will run infinitive you should be aware that php caches things in the ram. So if you're not careful you'll end up with no ram :)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.