Please i Need to get the attachment full name from every email, because i need to use the path where i save it after
Hi @Soudios
You can use below expression to get all attachment name from the mail
currentMailMessage.Attachments.Select(Function(x) x.Name).ToArray
Hi @Soudios ,
If your email contains just one attachment you could use the following code to get its name:
attachmentName = CType(item.Attachments.FirstOrDefault, Attachment).Name
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.