Instantiate the Viewer object. Specify a file that contains attachments.
Call the GetAttachments method. It returns the attachment collection.
Iterate through the collection. To save an attachment, call the SaveAttachment method.
The following code snippet shows how to get and save all attachments from the MSG file:
Note
NOTE: provided code snippet suits all format families that support attachments: emails, Outlook data files, archives, and PDF documents.
usingSystem.IO;usingSystem.Collections.Generic;usingGroupDocs.Viewer;usingGroupDocs.Viewer.Results;// ...using(Viewerviewer=newViewer("with_attachments.msg")){// Get list of attachments.IList<Attachment>attachments=viewer.GetAttachments();// Save each attachments.foreach(Attachmentattachmentinattachments){stringfilePath=Path.Combine("output",attachment.FileName);viewer.SaveAttachment(attachment,File.OpenWrite(filePath));}}
ImportsSystem.IOImportsSystem.Collections.GenericImportsGroupDocs.ViewerImportsGroupDocs.Viewer.Results' ...
ModuleProgramSubMain(argsAsString())UsingviewerAsViewer=NewViewer("with_attachments.msg")' Get list of attachments.
DimattachmentsAsIList(OfAttachment)=viewer.GetAttachments()' Save each attachments.
ForEachattachmentAsAttachmentInattachmentsDimfilePathAsString=Path.Combine("output",attachment.FileName)viewer.SaveAttachment(attachment,File.OpenWrite(filePath))NextEndUsingEndSubEndModule
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.