Cant delete emails

niall91

New Member
Joined
Jul 21, 2020
Messages
45
Office Version
  1. 2019
Platform
  1. Windows
Hi

At the end of the sub Im trying to delete or move the email to the trash but it doesn't do anything.
Doesn't have an error message either.
Any ideas?

VBA Code:
Sub SaveMessageAsMsg(ByVal oPath As String)
  Dim oMail As Outlook.MailItem
  Dim objItem As Object
  Dim sPath As String
  Dim dtDate As Date
  Dim sName As String
  Dim enviro As String
 
For Each objItem In ActiveExplorer.Selection
    If objItem.MessageClass = "IPM.Note" Then
        Set oMail = objItem
        
        sName = InputBox("This email will be saved to:" & vbNewLine & oPath & vbNewLine & "Please enter an Email name?", "Save Email")
        
        If IsEmpty(sName) Or sName = "" Then
            sName = "Email Order"
        Else
            sName = "Email Order - " & sName 'oMail.Subject
        End If
        ReplaceCharsForFileName sName, "-"

        dtDate = oMail.ReceivedTime
        sName = sName & " - " & Format(dtDate, "dd", vbUseSystemDayOfWeek, _
          vbUseSystem) & ".msg"

        
        oMail.SaveAs oPath & sName, olMSG

        aws = MsgBox("Would you like to move Email to the trash", vbYesNo)
        If aws = vbYes Then
            On Error Resume Next
            oMail.Delete
        End If
    
    End If
Next
  
End Sub
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".

Forum statistics

Threads
1,215,696
Messages
6,126,267
Members
449,308
Latest member
VerifiedBleachersAttendee

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