Mercurial > public > sg101
annotate gpp/mailer/management/commands/send_mail.py @ 235:d302c498560e
Fix problem when deleting multiple topics from a forum in bulk. We getting a list of topics from the database, then deleting each topic. But after you delete a topic, the forum.last_post on the remaining non-deleted topics can be stale. This was causing a weird DoesNotExist. Now just get the topics one at a time from the database.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Thu, 26 Aug 2010 04:01:58 +0000 |
parents | aef00df91165 |
children |
rev | line source |
---|---|
bgneal@180 | 1 """send_mail is a custom manage.py command for the mailer application. |
bgneal@180 | 2 It is intended to be called from a cron job periodically to send out queued |
bgneal@180 | 3 email in bulk. This avoids doing the mailing on the HTTP request processing. |
bgneal@180 | 4 """ |
bgneal@180 | 5 from django.core.management.base import NoArgsCommand |
bgneal@180 | 6 |
bgneal@180 | 7 import mailer |
bgneal@180 | 8 |
bgneal@180 | 9 |
bgneal@180 | 10 class Command(NoArgsCommand): |
bgneal@180 | 11 help = "Run periodically to send out queued email." |
bgneal@180 | 12 |
bgneal@180 | 13 def handle_noargs(self, **options): |
bgneal@180 | 14 mailer.send_queued_mail() |
bgneal@180 | 15 |