Carguy37122
New Member
- Joined
- Sep 11, 2014
- Messages
- 17
Happy Holiday Everyone!
I need a little help. I've been playing with this vba code for outlook and it is amazing!
Hoping to add a little more code to fix my needs completely.
Would like to be able to save the file attachments to a subfolder that is created from the "subject line" of the email.
For example: I receive an email with an attachment where the subject line states "12.01.2014 sales report". The attachments should be saved to C:\Downloads\test\12.01.2014
The code below would save the attachments to C:\Downloads\test
At this point, I would have to manually create each subfolder.
Really hope someone can help with this code. I'm sure this would benefit a lot of other people too.
Thanks again for all your help!
Sub Test()
'Arg 1 = Folder name of folder inside your Inbox
'Arg 2 = File extension, "" is every file
'Arg 3 = Save folder, "C:\Users\Ron\test" or ""
' If you use "" it will create a date/time stamped folder for you in your "Documents" folder
' Note: If you use this "C:\Users\Ron\test" the folder must exist.
arg1 = MyFolder
arg2 = ""
arg3 = "C:\Downloads\test"
SaveEmailAttachmentsToFolder "MyFolder", "xls", ""
End Sub
Sub SaveEmailAttachmentsToFolder(OutlookFolderInInbox As String, _
ExtString As String, destFolder As String)
Dim ns As NameSpace
Dim inBox As MAPIFolder
Dim SubFolder As MAPIFolder
Dim Item As Object
Dim Atmt As Attachment
Dim FileName As String
Dim MyDocPath As String
Dim I As Integer
Dim wsh As Object
Dim fs As Object
On Error GoTo ThisMacro_err
Set ns = GetNamespace("MAPI")
Set inBox = ns.GetDefaultFolder(olFolderInbox)
Set SubFolder = inBox.Folders(OutlookFolderInInbox)
I = 0
' Check subfolder for messages and exit of none found
If SubFolder.items.Count = 0 Then
MsgBox "There are no messages in this folder : " & OutlookFolderInInbox, _
vbInformation, "Nothing Found"
Set SubFolder = Nothing
Set inBox = Nothing
Set ns = Nothing
Exit Sub
End If
'Create DestFolder if DestFolder = ""
If destFolder = "" Then
Set wsh = CreateObject("WScript.Shell")
Set fs = CreateObject("Scripting.FileSystemObject")
MyDocPath = wsh.SpecialFolders.Item("mydocuments")
'MyDocPath = wsh.SpecialFolders.Item("C:\Downloads\test)
'DestFolder = MyDocPath & "\" & Format(Now, "dd-mmm-yyyy hh-mm-ss")
destFolder = MyDocPath & "\" & Format(Now, "mmm-dd-yyyy")
If Not fs.FolderExists(destFolder) Then
fs.CreateFolder destFolder
End If
End If
If Right(destFolder, 1) <> "\" Then
destFolder = destFolder & "\"
End If
' Check each message for attachments and extensions
For Each Item In SubFolder.items
For Each Atmt In Item.Attachments
If LCase(Right(Atmt.FileName, Len(ExtString))) = LCase(ExtString) Then
'FileName = DestFolder & Item.SenderName & " " & Atmt.FileName
'I = I + 1
'FileName = DestFolder & " " & Atmt.FileName & "_" & Format(I, "00")
FileName = destFolder & " " & Atmt.FileName
Atmt.SaveAsFile FileName
I = I + 1
End If
Next Atmt
Next Item
' Show this message when Finished
If I > 0 Then
MsgBox "You can find the files here : " _
& destFolder, vbInformation, "Finished!"
Else
MsgBox "No attached files in your mail.", vbInformation, "Finished!"
End If
' Clear memory
ThisMacro_exit:
Set SubFolder = Nothing
Set inBox = Nothing
Set ns = Nothing
Set fs = Nothing
Set wsh = Nothing
Exit Sub
' Error information
ThisMacro_err:
MsgBox "An unexpected error has occurred." _
& vbCrLf & "Please note and report the following information." _
& vbCrLf & "Macro Name: SaveEmailAttachmentsToFolder" _
& vbCrLf & "Error Number: " & Err.Number _
& vbCrLf & "Error Description: " & Err.Description _
, vbCritical, "Error!"
Resume ThisMacro_exit
End Sub
I need a little help. I've been playing with this vba code for outlook and it is amazing!
Hoping to add a little more code to fix my needs completely.
Would like to be able to save the file attachments to a subfolder that is created from the "subject line" of the email.
For example: I receive an email with an attachment where the subject line states "12.01.2014 sales report". The attachments should be saved to C:\Downloads\test\12.01.2014
The code below would save the attachments to C:\Downloads\test
At this point, I would have to manually create each subfolder.
Really hope someone can help with this code. I'm sure this would benefit a lot of other people too.
Thanks again for all your help!
Sub Test()
'Arg 1 = Folder name of folder inside your Inbox
'Arg 2 = File extension, "" is every file
'Arg 3 = Save folder, "C:\Users\Ron\test" or ""
' If you use "" it will create a date/time stamped folder for you in your "Documents" folder
' Note: If you use this "C:\Users\Ron\test" the folder must exist.
arg1 = MyFolder
arg2 = ""
arg3 = "C:\Downloads\test"
SaveEmailAttachmentsToFolder "MyFolder", "xls", ""
End Sub
Sub SaveEmailAttachmentsToFolder(OutlookFolderInInbox As String, _
ExtString As String, destFolder As String)
Dim ns As NameSpace
Dim inBox As MAPIFolder
Dim SubFolder As MAPIFolder
Dim Item As Object
Dim Atmt As Attachment
Dim FileName As String
Dim MyDocPath As String
Dim I As Integer
Dim wsh As Object
Dim fs As Object
On Error GoTo ThisMacro_err
Set ns = GetNamespace("MAPI")
Set inBox = ns.GetDefaultFolder(olFolderInbox)
Set SubFolder = inBox.Folders(OutlookFolderInInbox)
I = 0
' Check subfolder for messages and exit of none found
If SubFolder.items.Count = 0 Then
MsgBox "There are no messages in this folder : " & OutlookFolderInInbox, _
vbInformation, "Nothing Found"
Set SubFolder = Nothing
Set inBox = Nothing
Set ns = Nothing
Exit Sub
End If
'Create DestFolder if DestFolder = ""
If destFolder = "" Then
Set wsh = CreateObject("WScript.Shell")
Set fs = CreateObject("Scripting.FileSystemObject")
MyDocPath = wsh.SpecialFolders.Item("mydocuments")
'MyDocPath = wsh.SpecialFolders.Item("C:\Downloads\test)
'DestFolder = MyDocPath & "\" & Format(Now, "dd-mmm-yyyy hh-mm-ss")
destFolder = MyDocPath & "\" & Format(Now, "mmm-dd-yyyy")
If Not fs.FolderExists(destFolder) Then
fs.CreateFolder destFolder
End If
End If
If Right(destFolder, 1) <> "\" Then
destFolder = destFolder & "\"
End If
' Check each message for attachments and extensions
For Each Item In SubFolder.items
For Each Atmt In Item.Attachments
If LCase(Right(Atmt.FileName, Len(ExtString))) = LCase(ExtString) Then
'FileName = DestFolder & Item.SenderName & " " & Atmt.FileName
'I = I + 1
'FileName = DestFolder & " " & Atmt.FileName & "_" & Format(I, "00")
FileName = destFolder & " " & Atmt.FileName
Atmt.SaveAsFile FileName
I = I + 1
End If
Next Atmt
Next Item
' Show this message when Finished
If I > 0 Then
MsgBox "You can find the files here : " _
& destFolder, vbInformation, "Finished!"
Else
MsgBox "No attached files in your mail.", vbInformation, "Finished!"
End If
' Clear memory
ThisMacro_exit:
Set SubFolder = Nothing
Set inBox = Nothing
Set ns = Nothing
Set fs = Nothing
Set wsh = Nothing
Exit Sub
' Error information
ThisMacro_err:
MsgBox "An unexpected error has occurred." _
& vbCrLf & "Please note and report the following information." _
& vbCrLf & "Macro Name: SaveEmailAttachmentsToFolder" _
& vbCrLf & "Error Number: " & Err.Number _
& vbCrLf & "Error Description: " & Err.Description _
, vbCritical, "Error!"
Resume ThisMacro_exit
End Sub