Re: smtplib

2006-06-08 חוט Ori Peleg
Hi Eli! Here's an idea: It seems class smtplib.SMTP sends the message with method 'send', that calls a socket's 'sendall' (from Python 2.4's smtplib.py) def send(self, str): Send `str' to the server. # .. skipping self.sock.sendall(str) # .. skipping

smtplib

2006-06-07 חוט Eli Golovinsky
I am sending large email messages (with MIME parts) using this recipe : http://aspn.activestate.com/ASPN/Cookbook/Python/Recipe/473810 But I can't find any way to monitor the progress (i.e. how many bytes have been delivered until now) of the sending. Anybody has an idea how I can