Here is my setup right now:

connection = mail.get_connection()
maillist = []

# my real setup is a little more complex for-loop, but basicly I add all recipients to a list. 
for person in object_list:
    mail_subject = "Mail subject here"
    mail_body = "Mail body text...bla bla"
    email_sender = "me@example.com"
    maillist.append((mail_subject, mail_body, email_sender, [person.email]))

#send_mass_mail wants a tuple, so we convert the list
mailtuple = tuple(maillist)
mail.send_mass_mail(mailtuple, fail_silently=False, connection=connection)

However, the forloop iterates over 1000+ objects/persons and when I try this method I'm able to send 101 emails, and then it stops. No errors (as I can see) anywhere.

A fellow developer mentioned that maybe the POST size was too big? Any ideas from the SO-community?

link|improve this question

62% accept rate
feedback

3 Answers

Your SMTP server probably has some send limits. For example, I believe Gmail limits outgoing mail to 100 recipients.

link|improve this answer
+1 likely cause – code_burgar Mar 29 '11 at 18:00
feedback

As Micah suggested, there is a good chance you are hitting server limits.

Generally, when dealing with mass mail, it is always a good idea to throttle the sending. Doing 50 mails every 5 seconds for 300 seconds beats 3000 mails at once for many practical reasons including smtp server limitations.

link|improve this answer
Is there some way to set this delay in Django? – lordlarm Mar 29 '11 at 18:12
You don't have to set the delay in Django. Create a django script that shoots off 100 mails at a time, and create a cronjob to hit that file every minute. All you have to do is somehow mark the processed addresses as to prevent multiple messages being sent to the same addresses. – code_burgar Mar 29 '11 at 18:16
Another option would be not to handle this via a cronjob, but make an asynchronous job using django-celery... – lazerscience Mar 29 '11 at 20:03
feedback

Since you mentioned a POST limit - do you send out the emails in a view? I'm wondering how you handle canceled requests in your setup.

I'm using a management command to send out 1000+ newsletters. But instead of send_mass_mail i use the normal send method in a loop. It takes about 5 minutes (haven't a correct count atm) to send out the mails and i haven't run into any server limits yet.

My plan is to switch to celery to handle sending through a web interface. Perhaps you want to have a look at it in case you haven't already.

http://celeryproject.org/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.