Re: send_mass_mail on object creation

2009-09-19 Thread aa56280
> The way I have handled this in the past is to create a simple app that you > can run from the command line. I had it check a table that was updated with > the list of emails to send and set it up as a scheduled task (cron job) for > every 20 minutes or so. I was leaning toward a similar solutio

Re: send_mass_mail on object creation

2009-09-18 Thread Joshua Russo
On Fri, Sep 18, 2009 at 10:13 PM, aa56280 wrote: > > When a new instance of some object is created, I need to send out X > number of emails. X could potentially mean hundreds of emails. > > What would be the most efficient way to do this? > > I know if I use send_mass_mail() it could potentially

send_mass_mail on object creation

2009-09-18 Thread aa56280
When a new instance of some object is created, I need to send out X number of emails. X could potentially mean hundreds of emails. What would be the most efficient way to do this? I know if I use send_mass_mail() it could potentially hang for quite a long time. Any thoughts greatly appreciated.