<p>preexistant code :<br> <br>import sys, smtplib<br>import string<br>fromaddr = raw_input("From: ")<br>toaddrs  = string.splitfields(raw_input("To: "), ',')<br>print "Enter message, end with ^D:"<br>
msg = ''<br>count = 3<br>while count > 0:<br>    line = sys.stdin.readline()<br>    #if not line:<br>    #    break<br>    msg = msg + line<br>    count = count -1<br>    # The actual mail send<br>server = smtplib.SMTP('localhost')<br>
server.sendmail(fromaddr, toaddrs, msg)<br>server.quit()</p>
<p>-----<br>Running the program:<br>------------------------------------------<br>From: <a href="mailto:prakash.stack@gmail.com">prakash.stack@gmail.com</a><br>To: <a href="mailto:prakash.stack@gmail.com">prakash.stack@gmail.com</a><br>
hai<br>how r <br>u<br>---------------------------<br>error creeps in :<br>error says::::<br> <br>Traceback (most recent call last):<br>  File "C:\Python25\python-collection\mail\mail.py", line 17, in <module><br>
    server = smtplib.SMTP('localhost')<br>  File "C:\Python25\lib\smtplib.py", line 244, in __init__<br>    (code, msg) = self.connect(host, port)<br>  File "C:\Python25\lib\smtplib.py", line 310, in connect<br>
    raise socket.error, msg<br>error: (10061, 'Connection refused')<br><br></p>
<div class="gmail_quote">On Mon, Mar 30, 2009 at 7:40 AM, prakash jp <span dir="ltr"><<a href="mailto:prakash.stack@gmail.com">prakash.stack@gmail.com</a>></span> wrote:<br>
<blockquote style="BORDER-LEFT: #ccc 1px solid; MARGIN: 0px 0px 0px 0.8ex; PADDING-LEFT: 1ex" class="gmail_quote">
<div>Hi all,</div>
<div> </div>
<div>In windows environment, how to send email from one gmail address to another gmail (or another mail) addrress</div>
<div> </div>
<div> </div>
<div>Regards</div>
<div>Prakash</div></blockquote></div><br>