Mass mailing module for Python

Erik Max Francis max at alcyone.com
Thu Nov 29 13:49:47 EST 2001


Max M wrote:

> Without having tried it I guess that using a regular mailserver and
> then
> just sending tons of mails from that, one at a time, wont work either.
> Though it would be very easy. Here I am thinking about bouncing mail
> and
> unavailable mailservers, but I could be wrong.
> 
> Doest anybody have an idea as to how I should approach this in Python?
> Has
> anybody tried it?

If each individual email needs to be personalized, then you're going to
have to deliver each individually.  If there are 25-40 000 recipients,
that means 25-40 000 emails, and so you're going to need a heavy duty
mail transfer agent like sendmail to do the job.  It's trivial to write
a program to generate the personalized emails, but if you want to get
anything like reasonable performance you're best off letting sendmail
handle the bulk deliveries.

-- 
 Erik Max Francis / max at alcyone.com / http://www.alcyone.com/max/
 __ San Jose, CA, US / 37 20 N 121 53 W / ICQ16063900 / &tSftDotIotE
/  \ Laws are silent in time of war.
\__/ Cicero
    Esperanto reference / http://www.alcyone.com/max/lang/esperanto/
 An Esperanto reference for English speakers.



More information about the Python-list mailing list