Helllo, I want to get the raw format of email body. the code Im using is
for part in email.walk(): if part.get_content_maintype() == 'multipart': continue if part.get_content_type() == 'text/plain': # print part.get_content_type() print part.get_payload(None,True) The problem is, that code adds one more '\n' at the and of the output printed by get_payload(). Is that bug? Thanks. Best, Peter -- http://mail.python.org/mailman/listinfo/python-list