Python Forum
Details of attachment files in a msg file such as file names save into a python list
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Details of attachment files in a msg file such as file names save into a python list
#1
I want to get details of attachments in an email file (msg format).
1. I would like to get attachment names into a list.
Currently i can only get True or False value, indicating whether there is an attachment or not.

Sample email file is uploaded to OneDrive- https://1drv.ms/u/s!An03iU493hAgnj0tG51D...m?e=tzBT5k
import win32com.client

outlook=win32com.client.Dispatch("Outlook.Application").GetNamespace("MAPI")
msg=outlook.OpenSharedItem(r'''C:\Users\Desktop\Downloads\Test_MSGfiles.msg''')

msg_AttachmentsList = msg.PropertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x0E1B000B")
2. In case if possible can we get attachment file sizes into a list and also can we save attachments into a folder as well.

Appreciate your thoughts on this.
Thanks,
klllmmm
Reply
#2
use other method
for i in msg.Attachments:
    print(i)
Reply
#3
(Nov-05-2019, 06:22 AM)MckJohan Wrote: use other method
for i in msg.Attachments:
    print(i)

This works, Thank you so much!
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Correct/proper way to create save files snakes 0 429 Mar-11-2025, 06:58 PM
Last Post: snakes
  How to remove unwanted images and tables from a Word file using Python? rownong 2 700 Feb-04-2025, 08:30 AM
Last Post: Pedroski55
  Best way to feed python script of a file absolut 6 1,033 Jan-11-2025, 07:03 AM
Last Post: Gribouillis
  Removal of watermark logo pdf file Python druva 0 630 Jan-01-2025, 11:55 AM
Last Post: druva
  How to write variable in a python file then import it in another python file? tatahuft 4 846 Jan-01-2025, 12:18 AM
Last Post: Skaperen
  How to communicate between scripts in python via shared file? daiboonchu 4 1,443 Dec-31-2024, 01:56 PM
Last Post: Pedroski55
  Problems writing a large text file in python Vilius 4 936 Dec-21-2024, 09:20 AM
Last Post: Pedroski55
  Get an FFMpeg pass to subprocess.PIPE to treat list as text file? haihal 2 973 Nov-21-2024, 11:48 PM
Last Post: haihal
  How to re-register .py file extension to new moved Python dir (on Windows)? pstein 5 1,212 Nov-06-2024, 03:06 PM
Last Post: DeaD_EyE
  Read TXT file in Pandas and save to Parquet zinho 2 1,196 Sep-15-2024, 06:14 PM
Last Post: zinho

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020