다음 코드 (Reading e-mails from Outlook with Python through MAPI)를 사용하여 Outlook에서 전자 메일을 읽을 수 있음을 이해했습니다.python 및 win32com을 사용하여 Outlook 전자 메일을 읽는 중 인증이 작동하는 방식
import win32com.client
outlook = win32com.client.Dispatch("Outlook.Application").GetNamespace("MAPI")
inbox = outlook.GetDefaultFolder(6) # "6" refers to the index of a folder - in this case,
# the inbox. You can change that number to reference
# any other folder
messages = inbox.Items
message = messages.GetLast()
body_content = message.body
print body_content
위의 코드에서 사용자 이름과 비밀번호는 제공하지 않습니다. 그런 다음 코드가 Outlook 계정을 어떻게 인증 했습니까?
여기서 인증이 어떻게 발생하는지 설명 할 수 있습니다.
https://stackoverflow.com/questions/1225586/checking-email-with-python – amrit