print (msg.SenderName)
print (msg.SenderEmailAddress)
print (msg.SentOn)
print (msg.To)
print (msg.CC)
print (msg.BCC)
print (msg.Subject)
print (msg.Body)
我只是想尝试以上内容,然后将内容写入新创建的.PDF文件中...因此,使用上面捕获的内容创建一个.PDF文件。
下面是完整的代码,我在其中打开.msg
文件并提取其内容...在打开.msg
文件并将其内容正确输出到Anaconda提示窗口;只是还没有弄清楚如何使用Python将其推送到新创建的.pdf文件中。
import win32com.client
outlook = win32com.client.Dispatch("Outlook.Application").GetNamespace("MAPI")
msg = outlook.OpenSharedItem(r"C:\Users\path\path\test_msg.msg")
print (msg.SenderName)
print (msg.SenderEmailAddress)
print (msg.SentOn)
print (msg.To)
print (msg.CC)
print (msg.BCC)
print (msg.Subject)
print (msg.Body)
count_attachments = msg.Attachments.Count
if count_attachments > 0:
for item in range(count_attachments):
print (msg.Attachments.Item)(item + 1).Filename
del outlook, msg