Re: Mail Queuing in CakePHP

2008-12-01 Thread Adam Royle
The reason why there is no standard thing in cake is because it's very easy to code but a few different ways to accomplish! You could use the following code as a starting guide ... (very similar to the code you linked to, but I didn't see it before, woops!) http://bin.cakephp.org/saved/40161

Re: Mail Queuing in CakePHP

2008-12-01 Thread boyracerr
Thanks for your reply; I also had another (private) reply suggesting that SwiftMailer (http://swiftmailer.org/) would be a good fit. It doesn't have DB-based mail queuing as such, but it does have AntiFlood (http://swiftmailer.org/wikidocs/v3/plugins/antiflood) to prevent killing the SMTP server.

Mail Queuing in CakePHP

2008-11-30 Thread boyracerr
Hi, In my rewrite of a system into CakePHP, I need to implement a Mail Queue (storing mail messages in a database for later sending in order not to overwhelm the SMTP server). My previous application used the PEAR Mail::Queue class for this, and it always worked perfectly. I've searched for