Save Outlook attachment to disk

后端 未结 1 1857
夕颜
夕颜 2020-12-20 08:53

I found numerous examples of VBA scripts to automatically move attachments to my hard drive. This one I\'ve found online works when I run the macro in Outlook as is

相关标签:
1条回答
  • 2020-12-20 09:27

    Keep most of the script. Remove the reference to Outlook.Selection and the for loop associated to it. Then, in it's place, assign item to objMsg to allow the rest of the of the script to function as normal. After testing I have decided to steal it and use it myself as well.

    Public Sub moveAttachmentsAlpha(item As Outlook.MailItem)
    
    Dim objMsg As Outlook.MailItem 'Object
    Dim objAttachments As Outlook.Attachments
    Dim i As Long
    Dim lngCount As Long
    Dim strFile As String
    Dim strFolderpath As String
    Dim strDeletedFiles As String
    
    ' Get the path to your My Documents folder
    strFolderpath = "C:\temp\"
    On Error Resume Next
    
    Set objMsg = item
    
    ' This code only strips attachments from mail items.
    ' If objMsg.class=olMail Then
    ' Get the Attachments collection of the item.
    Set objAttachments = objMsg.Attachments
    lngCount = objAttachments.Count
    strDeletedFiles = ""
    
    If lngCount > 0 Then
    
        ' We need to use a count down loop for removing items
        ' from a collection. Otherwise, the loop counter gets
        ' confused and only every other item is removed.
    
        For i = lngCount To 1 Step -1
    
            ' Save attachment before deleting from item.
            ' Get the file name.
            strFile = objAttachments.item(i).FileName
    
            ' Combine with the path to the Temp folder.
            strFile = strFolderpath & strFile
    
            ' Save the attachment as a file.
            objAttachments.item(i).SaveAsFile strFile
    
            'write the save as path to a string to add to the message
            'check for html and use html tags in link
            If objMsg.BodyFormat <> olFormatHTML Then
                strDeletedFiles = strDeletedFiles & vbCrLf & "<file://" & strFile & ">"
            Else
                strDeletedFiles = strDeletedFiles & "<br>" & "<a href='file://" & _
                strFile & "'>" & strFile & "</a>"
            End If
    
        Next i
    
        ' Adds the filename string to the message body and save it
        ' Check for HTML body
        If objMsg.BodyFormat <> olFormatHTML Then
            objMsg.Body = vbCrLf & "The file(s) were saved to " & strDeletedFiles & vbCrLf & objMsg.Body
        Else
            objMsg.HTMLBody = "<p>" & "The file(s) were saved to " & strDeletedFiles & "</p>" & objMsg.HTMLBody
        End If
        objMsg.Save
    End If
    
    ExitSub:
    
    Set objAttachments = Nothing
    Set objMsg = Nothing
    Set objSelection = Nothing
    Set objOL = Nothing
    
    End Sub
    

    FYI: I changed nothing after the line ' This code only strips attachments from mail items. Except for a Next

    0 讨论(0)
提交回复
热议问题