|  | Posted by Manuel Lemos on 06/29/05 00:55 
Hello,
 on 06/28/2005 10:58 AM Nis Sarup said the following:
 > A customer of mine wants to make a newsletter for their website. The
 > newsletter should be HTML with images and sent to a database of her
 > subscribers.
 > They would like a script where they can easily compose and send the
 > newsletter. I can write that, but wouldnt like to reinvent the weel.
 > Does anybody here have any good recomendations on newsletter
 > composing/sending software? Userfriendliness and simplicity is the key.
 
 You may want to try this class for composing and send e-mail messages.
 It has support for composing HTML messages with embedded images.
 
 It also can work in an optimized way for bulk mailing using the
 SetBulkMail() function.
 
 It supports several different delivery methods (mail(), sendmail [or
 exim, or postfix), qmail, smtp) so you can choose the one that is more
 appropriate for you.
 
 It can be used for sending personalized messages, optionally using
 Smarty to define the message templates, or cache the message bodies for
 optimizing the delivery of messages that do not change for different users.
 
 All you need to do is to run the SQL query that extracts your user
 details and iterate the delivery for each one. The class comes with
 examples fo how to do that so you can adapt for using with your database:
 
 http://www.phpclasses.org/mimemessage
 
 --
 
 Regards,
 Manuel Lemos
 
 PHP Classes - Free ready to use OOP components written in PHP
 http://www.phpclasses.org/
 
 PHP Reviews - Reviews of PHP books and other products
 http://www.phpclasses.org/reviews/
 
 Metastorage - Data object relational mapping layer generator
 http://www.meta-language.net/metastorage.html
 [Back to original message] |