how to read attachment name without downloading attachment in gmail.
Thank you
1 Like
Hi
Have a view on this thread for sample workflow
For steps
- Use get outlook mail activity and get all the mails you want with a variable of type mailmessage collections and name it as out_mailmessage
- Use a for each loop and pass the above variable as input and change the type argument as mailmessage
- inside the for each loop use a assign activity like this to get the name of the file attached (with file extension)
out_attachmentName = CType(item.Attachments.FirstOrDefault, Attachment).Name
this would give the name of file with extension that is attached to the mail list, where item is the variable obtained from the for each loop
Cheers @Vanitha_Agamin
Thank you, I will check with this solution
1 Like
Thank You all, It worked fine for me
1 Like
Glad it got resolved @Vanitha_Agamin
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.