views:

218

answers:

4

I'm looking for a simple, open source mailing list application (or library) that I can add to my Zend Framework application. I can't seem to find any that are decent, and once I have, not quite sure how I will integrate it (due to MVC).

Has anyone done this?

A: 

Maybe one of the phpmailer products would do it for you (they are LGPL). Sounds like phpmailer-ML might be what you are looking for.

gaoshan88
A: 

Maybe powerfull http://www.phplist.com/

drnk
I've looked into this, but since the admin pages are automatically generated, rather than being a library of classes/functions, I don't think this would be a viable solution.
Andrew
A: 

I have heard of swiftmailer.org, but I haven't used it. Does anyone have any experience with this one? Is it any better than using Zend_Mail?

Andrew
A: 

A couple years ago phplist was talking about exposing a real web services API so that you wouldn't need such tight integration with the app. It is probably better to keep the functionality encapsulated and only talk to the ml through its interface. The last time I played with it, however, there wasn't one, and we had a go at writing one. However any third party solution written at that time needed to know stuff about its internal db schema, which was not a very long term solution. However, our decision was that knowing about its schema was better than knowing all about its code. If phplist did expose a full-fledged API you wouldn't worry about the internal implementation of the ml (MVC or otherwise) or its schema, you would just write some classes to give it what it wants, and take what it gives you back and make it do what YOU want.