Re: send_mass_mail()

2010-03-10 Thread CLIFFORD ILKAY
On 03/10/2010 06:22 PM, onoxo wrote: hi! I know about Mailman but i have to send unique mail to each user, kind of confirmation with system generated url. -- Regards, Clifford Ilkay Dinamis 1419-3266 Yonge St. Toronto, ON Canada M

Re: send_mass_mail()

2010-03-10 Thread felix
I have a site that sends 40k in a day. take a look at http://code.google.com/p/django-mailer/ I'm using that, though I've now modified it and not had a chance to release my version. mails are put into a queue and the queue is fed by a background daemon loop I've added html support and actually

Re: send_mass_mail()

2010-03-10 Thread onoxo
@CLIFFORD ILKAY how did you handle so much mails? On Mar 11, 12:22 am, onoxo wrote: > hi! > > I know about Mailman but i have to send unique mail to each user, kind > of confirmation with system generated url. > > On Mar 11, 12:16 am, CLIFFORD ILKAY > wrote: > > > > > On 03/10/2010 02:19 PM, ono

Re: send_mass_mail()

2010-03-10 Thread onoxo
hi! I know about Mailman but i have to send unique mail to each user, kind of confirmation with system generated url. On Mar 11, 12:16 am, CLIFFORD ILKAY wrote: > On 03/10/2010 02:19 PM, onoxo wrote: > > > how much mails can i send with send_mass_mail() > > i have like 7000 users and i have send

Re: send_mass_mail()

2010-03-10 Thread CLIFFORD ILKAY
On 03/10/2010 02:19 PM, onoxo wrote: how much mails can i send with send_mass_mail() i have like 7000 users and i have send mail to all of them. I've done large mailshots before. It's not fun if you don't have some method of bounce handling because even if you have a very clean list, with a l

Re: send_mass_mail()

2010-03-10 Thread onoxo
thanks! i'm talking with people from webfaction about smtp limit, i'll post result... On Mar 10, 9:04 pm, Jirka Vejrazka wrote: > > how much mails can i send with send_mass_mail() > > i have like 7000 users and i have send mail to all of them. > > Hi, > >   I have never used it myself, but a qui

Re: send_mass_mail()

2010-03-10 Thread Jirka Vejrazka
> how much mails can i send with send_mass_mail() > i have like 7000 users and i have send mail to all of them. Hi, I have never used it myself, but a quick glance at the source code does not show any reason why this would not work. However, keep two things in mind: - the emails are first al

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

Re: send_mass_mail() on save

2006-12-13 Thread Adam Fast
You'll want to look into the save and delete hooks functionality here: http://www.djangoproject.com/documentation/models/save_delete_hooks/ What it would look like is add to Publications: def save(self): super(Publications, self).save() # Call the "real" save() method customer_list