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 -- http://mail.python.org/mailman/listinfo/python-list