Question about smtplib, and mail servers in general.

Chris Dewin notrealaddress at all.com
Tue Sep 20 07:03:53 EDT 2005


Hi. I've been thinking about using smtplib to run a mailing list from my website.

s = smtplib.SMTP("server")
s.sendmail(fromaddress, toaddresess, msg)

I know that in this instance, the toaddresses variable can be a variable
of type list.

Suppose the list contains well over 100 emails. Would that create some
sort of drain on the mail server? Would I be better off doing it in some
other way? 

-- 
www.wintergreen.in




More information about the Python-list mailing list