Results 1 to 3 of 3

Thread: [FAQ's: OD] How do I save/remove an attachment from an email message?

Threaded View

  1. #1

    Thread Starter
    Ex-Super Mod RobDog888's Avatar
    Join Date
    Apr 2001
    Location
    LA, Calif. Raiders #1 AKA:Gangsta Yoda™
    Posts
    60,709

    [FAQ's: OD] How do I save/remove an attachment from an email message?

    An Outlook email is a MailItem type. This type has an .Attachments collection that also contains a .SaveAsFile and .Delete methods that we can take advantage of to perform our task(s).


    Outlook 2003 and VB 6 Code Example:

    VB Code:
    1. Option Explicit
    2. 'Add a reference to MS Outlook xx.0 Object Library
    3. Private Sub Command1_Click()
    4.  
    5.     Dim oApp As Outlook.Application
    6.     Dim oInbox As Outlook.MAPIFolder
    7.     Dim oEmail As Object
    8.     Dim oAttach As Outlook.Attachment
    9.    
    10.     Set oApp = New Outlook.Application
    11.     'Reference the default Inbox
    12.     Set oInbox = oApp.GetNamespace("MAPI").GetDefaultFolder(olFolderInbox)
    13.     For Each oEmail In oInbox.Items
    14.         'Make sure its a mailitem and not a meeting request or read receipt etc.
    15.         If oEmail.Class = olMail Then
    16.             'Check if it has any attachments
    17.             If oEmail.Attachments.Count > 0 Then
    18.                 For Each oAttach In oEmail.Attachments
    19.                     oAttach.SaveAsFile "C:\" & oAttach.FileName
    20.                     'Uncomment next line to optionally remove the attachment
    21.                     'oAttach.Delete
    22.                     'oEmail.Save ?
    23.                 Next
    24.             End If
    25.         End If
    26.     Next
    27.     'Clean up
    28.     Set oEmail = Nothing
    29.     Set oInbox = Nothing
    30.     oApp.Quit
    31.     Set oApp = Nothing
    32.    
    33. End Sub
    Last edited by RobDog888; Aug 23rd, 2006 at 04:17 PM.
    VB/Office Guru™ (AKA: Gangsta Yoda®)
    I dont answer coding questions via PM. Please post a thread in the appropriate forum.

    Microsoft MVP 2006-2011
    Office Development FAQ (C#, VB.NET, VB 6, VBA)
    Senior Jedi Software Engineer MCP (VB 6 & .NET), BSEE, CET
    If a post has helped you then Please Rate it!
    Reps & Rating PostsVS.NET on Vista Multiple .NET Framework Versions Office Primary Interop AssembliesVB/Office Guru™ Word SpellChecker™.NETVB/Office Guru™ Word SpellChecker™ VB6VB.NET Attributes Ex.Outlook Global Address ListAPI Viewer utility.NET API Viewer Utility
    System: Intel i7 6850K, Geforce GTX1060, Samsung M.2 1 TB & SATA 500 GB, 32 GBs DDR4 3300 Quad Channel RAM, 2 Viewsonic 24" LCDs, Windows 10, Office 2016, VS 2019, VB6 SP6

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width