Re: Email client in Pyhton

2005-08-25 Thread knaren
Thanks micheal, for help. I think this could solve most of problem. -- K Naren,MeTel Team. http://www.midascomm.com/ -- http://mail.python.org/mailman/listinfo/python-list

Re: Email client in Pyhton

2005-08-25 Thread knaren
Start reading related RFCs like RFC2822, RFC2045/6/7, RFC2231, RFC821 ... and then read Python documentation and you'll find that most of these RFC are supported/implemented by python modules like - email - smtlib - rfc822 As far I know the most complete mail client written in Python

Email client in Pyhton

2005-08-24 Thread knaren
Hi grp, I new to this grp and python too. i have started writing few python scripts myself. now i am planning to write a bear minimum email client in pyhton. i found the smtp module of python could serve my pupose. I can send message using mails using the smtp lib. Now i'm looking for some