Download email attachments based on subject name

Raychin

New Member
Joined
Apr 7, 2022
Messages
25
Office Version
  1. 2013
Platform
  1. Windows
Hello! I need to save attachments on my hard drive from incoming emails , based on subject name that contains both "Wind Power Forecast" and "0906" in the subject name. They are 2 emails, with same Subject name, every single day, and have to download the attachments from both of them. So i have a code, but there is a constant Run-time error 13, Type mismatch in the lines where i point the criteria for mail Subject :
VBA Code:
If InStr(outMailItem.Subject, "wind power forecast", vbTextCompare) > 0 And _
                    InStr(outMailItem.Subject, "0906", vbTextCompare) > 0 Then

I can't avoid it, so can you help me solve that, please?

VBA Code:
Public Sub Save_Attachments()

    Dim OutlookOpened As Boolean
    Dim outApp As Outlook.Application
    Dim outNs As Outlook.NameSpace
    Dim outFolder As Outlook.MAPIFolder
    Dim outAttachment As Outlook.Attachment
    Dim outItem As Object
    Dim outMailItem As Outlook.mailitem
    Dim inputDate As String, subjectFilter As String
    Dim saveInFolder As String
    
    saveInFolder = "C:\Users\BG-TRADE-005\OneDrive - ****.com\Desktop\Schedule\Mail_Temp\Download\"   
    If Right(saveInFolder, 1) <> "\" Then saveInFolder = saveInFolder & "\"
    
    
    OutlookOpened = False
    On Error Resume Next
    Set outApp = GetObject(, "Outlook.Application")
    If Err.Number <> 0 Then
        Set outApp = New Outlook.Application
        OutlookOpened = True
    End If
    On Error GoTo 0
    
    If outApp Is Nothing Then
        MsgBox "Cannot start Outlook.", vbExclamation
        Exit Sub
    End If
    
    Set outNs = outApp.GetNamespace("MAPI")
    
    'Set outFolder = outNs.GetDefaultFolder(olFolderInbox).Folders("Test")
    
    Set outFolder = outNs.PickFolder

    If Not outFolder Is Nothing Then
        For Each outItem In outFolder.Items
            If outItem.Class = Outlook.OlObjectClass.olMail Then
                Set outMailItem = outItem
                    If InStr(outMailItem.Subject, "wind power forecast", vbTextCompare) > 0 And _
                        InStr(outMailItem.Subject, "0906", vbTextCompare) > 0 Then
                            For Each outAttachment In outMailItem.Attachments
                                           outMailItem.SaveAs saveInFolder & Format(Now, "yyyymmdd hhnnss") & ".msg", olMSG
                            Next
                    End If
            End If
        Next
    End If
    
End Sub
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
So i have a code, but there is a constant Run-time error 13, Type mismatch in the lines where i point the criteria for mail Subject :
VBA Code:
If InStr(outMailItem.Subject, "wind power forecast", vbTextCompare) > 0 And _
InStr(outMailItem.Subject, "0906", vbTextCompare) > 0 Then

When you specify the compare argument you must also specify the start argument, which is actually the first argument:
VBA Code:
        If InStr(1, outMailItem.Subject, "wind power forecast", vbTextCompare) > 0 And _
InStr(1, outMailItem.Subject, "0906", vbTextCompare) > 0 Then
 
Upvote 0
Solution
When you specify the compare argument you must also specify the start argument, which is actually the first argument:
VBA Code:
        If InStr(1, outMailItem.Subject, "wind power forecast", vbTextCompare) > 0 And _
InStr(1, outMailItem.Subject, "0906", vbTextCompare) > 0 Then
Thank you so much, John_w!
 
Upvote 0
Hmm now i have a problem with
VBA Code:
outMailItem.SaveAs saveInFolder & Format(Now, "yyyymmdd hhnnss") & ".msg", olMSG
line.
run-time error 2147286788 The operation failed
 
Upvote 0
Hmm now i have a problem with
VBA Code:
outMailItem.SaveAs saveInFolder & Format(Now, "yyyymmdd hhnnss") & ".msg", olMSG
line.
run-time error 2147286788 The operation failed
I mean i need to save the attachments inside the mails as they are (.csv) but i think i have set it wrong in the code, but can't see where is the problem
 
Upvote 0
The problem is the outMailItem.SaveAs line which is saving the whole email as an Outlook Message file (.msg). Change it to:
VBA Code:
outAttachment.SaveAsFile saveInFolder & outAttachment.Filename
 
Upvote 0
The problem is the outMailItem.SaveAs line which is saving the whole email as an Outlook Message file (.msg). Change it to:
VBA Code:
outAttachment.SaveAsFile saveInFolder & outAttachment.Filename
Yep, thank you John, i figured it out few min ago :)
I have a question - is it possible to set a time period at which the mails arrived (let's say between 09:00-10:00 AM) or just the mails from today ( the present day)?
 
Upvote 0
have a question - is it possible to set a time period at which the mails arrived (let's say between 09:00-10:00 AM) or just the mails from today ( the present day)?
Change the If statement to one of these:
VBA Code:
                If InStr(1, outMailItem.Subject, "wind power forecast", vbTextCompare) > 0 And _
                   InStr(outMailItem.Subject, "0906") > 0 And _
                   DateValue(outMailItem.ReceivedTime) = Date Then
                    'Email received today
                End If
                
                If InStr(1, outMailItem.Subject, "wind power forecast", vbTextCompare) > 0 And _
                   InStr(outMailItem.Subject, "0906") > 0 And _
                   DateValue(outMailItem.ReceivedTime) = Date And (TimeValue(outMailItem.ReceivedTime) >= TimeValue("09:00:00") And TimeValue(outMailItem.ReceivedTime) <= TimeValue("10:00:00")) Then
                    'Email received today between 9am and 10am
                End If
Note - vbTextCompare isn't needed with number strings because numbers don't have upper/lower case versions.
 
Upvote 0

Forum statistics

Threads
1,215,046
Messages
6,122,852
Members
449,096
Latest member
Erald

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top