Outlook VBA Scripts

Introduction

This VBA Module provides a feature to write a selection of emails to disk, such that the .msg file is named with date_sent – sender – subject and the visible attachments are saved alongside the file with the same date_sent as a prefix.

The .msg file and the associated attachments have their modified timestamp set to the sent timestamp.

The email in the Outlook Mailbox has the category “saved” added to it, so that messages which have already been saved can be kept track of.

Repository on GitHub: outlook-vba.

With thanks to Chip Pearson, www.cpearson.com, chip@cpearson.com for his file timestamp get/set VBA functions.

Source

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
Attribute VB_Name = "modEmailExport"
Option Explicit
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
' modEmailExport
' By Simon Hoffe, https://github.com/simon-hoffe
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''


'------------------------------------------------------------------------
''' SaveSelectedEmails()
'''
''' Call this sub when one or more emails are selected in the navigator.
''' Each email will be saved to the folder "\Documents\Emails\" in the user's
''' home directory.
'''
''' Each email will be saved to a file of the form:
'''    E yyyymmdd-hhmm - INITIAL@domain - Subject
'''    where
'''        yyyymmdd-hhmm is the time of sending, in the timezone of the user
'''        INITIAL@domain is a the Initials @ the domain of the sender
'''        Subject is the subject of the email. Repeating "RE" and "FWD" prefixes are reduced to one.
'''
'''    Then all visible attachments, and/or all non image attachments will also be saved
'''    to the \Documents\Emails\ folder in the form:
'''
'''        E yyymmdd-hhmm ___ filename.ext
'''        where
'''            yyyymmdd-hhmm is the same timestamp from the email.
'''            filename.ext is the original filename of the attachment.
'''
'''    There is some rudimentary checking for the existance of the folder, and
'''    for existing files with the same name. There is the option to overwrite the original .msg files.
'''    Attachments never overwrite and will be issued with unique names by appending a number "-1" or "-2" and so on.


Public Sub SaveSelectedEmails()
    Dim oMail As Outlook.MailItem
    Dim objItem As Object
    Dim enviro As String
    Dim sPath As String
    Dim nMsgResult As Long

    Dim oRegEx As Object
    Set oRegEx = CreateObject("vbscript.regexp")


    enviro = CStr(Environ("USERPROFILE"))
    sPath = enviro & "\Documents\Emails\"

    ' Prompt if the directory doesn't exist.
    If Not TestDirExist(sPath) Then
        nMsgResult = MsgBox( _
            Prompt:=sPath & " does not exist.", _
            Title:="Critical Error", _
            Buttons:=vbCritical + vbOKOnly)
        Exit Sub
    End If

    ' Iterate through all the selected emails
    For Each objItem In ActiveExplorer.Selection
        If objItem.MessageClass = "IPM.Note" Then
            Set oMail = objItem

            SaveOneMessageAsMsg oMail
        End If
    Next
End Sub

'------------------------------------------------------------------------
''' SaveOpenEmail()
'''
''' Call this sub from a window with the one email open and display.
''' Behaviour is as for SaveSelectedEmails() above.
'''
Public Sub SaveOpenEmail()
    Dim oMail As Outlook.MailItem
    Dim objItem As Object
    Dim enviro As String
    Dim sPath As String
    Dim nMsgResult As Long

    Dim oRegEx As Object
    Set oRegEx = CreateObject("vbscript.regexp")


    enviro = CStr(Environ("USERPROFILE"))
    sPath = enviro & "\Documents\Emails\"

    If Not TestDirExist(sPath) Then
        nMsgResult = MsgBox( _
            Prompt:=sPath & " does not exist.", _
            Title:="Critical Error", _
            Buttons:=vbCritical + vbOKOnly)
        Exit Sub
    End If

    Set objItem = ActiveInspector.CurrentItem

    If objItem.MessageClass = "IPM.Note" Then
        Set oMail = objItem

        SaveOneMessageAsMsg oMail
    End If
End Sub

'------------------------------------------------------------------------
''' ShowSenders()
'''
''' Call from the navigator with one or more emails selected.
''' This is a development tool to display the information pulled from the
''' MailItem object for each of the emails.
''' It doesn't write anything

Public Sub ShowSenders()
    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
    Dim sSender As String
    Dim sSubject As String
    Dim sDateTime As String

    enviro = CStr(Environ("USERPROFILE"))
    For Each objItem In ActiveExplorer.Selection
        If objItem.MessageClass = "IPM.Note" Then
            Set oMail = objItem

            GetDateString oMail, sDateTime
            GetSenderString oMail, sSender
            GetSubjectString oMail, sSubject

            sName = "E " & sDateTime & " - " & sSender & " - " & sSubject & ".msg"

            sPath = enviro & "\Documents\Emails"

            MsgBox "Subject: " & oMail.Subject & vbCrLf & _
                "SentOn: " & oMail.SentOn & vbCrLf & _
                "SenderName: " & oMail.SenderName & vbCrLf & _
                "SenderAddress: " & oMail.SenderEmailAddress & vbCrLf & _
                "SenderEmailType: " & oMail.SenderEmailType & vbCrLf & _
                vbCrLf & _
                "Folder: " & sPath & vbCrLf & _
                "Filename: " & sName

        End If
    Next

End Sub

'------------------------------------------------------------------------
''' SaveOneMessageAsMsg(oMail As Outlook.MailItem
'''
''' The workhorse called by SaveSelectedEmails() and SaveOpenEmail()

Private Sub SaveOneMessageAsMsg(ByRef oMail As Outlook.MailItem)
    Dim oAttachment As Outlook.Attachment
    Dim objItem As Object
    Dim sPath As String
    Dim dtDate As Date
    Dim sName As String
    Dim sAttName As String
    Dim sAttExt As String
    Dim sExt As String
    Dim enviro As String
    Dim sSender As String
    Dim sSubject As String
    Dim sDateTime As String
    Dim bSkipAttachment As Boolean
    Dim iSize As Long
    Dim iSizeLimit As Long
    Dim nMsgResult As Long
    Dim bSkipEmail As Boolean
    Dim vTemp As Variant
    Dim vPropNames() As Variant
    Dim bHiddenProp As Boolean
    Dim Result As Boolean
                

    Dim oRegEx As Object
    Set oRegEx = CreateObject("vbscript.regexp")


    enviro = CStr(Environ("USERPROFILE"))
    sPath = enviro & "\Documents\Emails\"
    
    If Not TestDirExist(sPath) Then
        nMsgResult = MsgBox( _
            Prompt:=sPath & " does not exist.", _
            Title:="Critical Error", _
            Buttons:=vbCritical + vbOKOnly)
        Exit Sub
    End If

    GetDateString oMail, sDateTime
    GetSenderString oMail, sSender
    GetSubjectString oMail, sSubject

    sName = "E " & sDateTime & " - " & sSender & " - " & sSubject


    sExt = ".msg"

' Some code for debugging

'            MsgBox "Subject: " & oMail.Subject & vbCrLf & _
'                "SentOn: " & oMail.SentOn & vbCrLf & _
'                "SenderName: " & oMail.SenderName & vbCrLf & _
'                "SenderAddress: " & oMail.SenderEmailAddress & vbCrLf & _
'                "SenderEmailType: " & oMail.SenderEmailType & vbCrLf & _
'                vbCrLf & _
'                "Folder: " & sPath & vbCrLf & _
'                "Filename: " & sName & sExt
'
'            Debug.Print sPath & sName

    bSkipEmail = False
    If TestFileExist(sPath & sName & sExt) Then
        nMsgResult = MsgBox( _
            Prompt:="This file already exists:" & vbCrLf & vbCrLf & _
                    sName & sExt & vbCrLf & vbCrLf & _
                    "Overwrite?", _
            Title:="Warning: File Exists", _
            Buttons:=vbQuestion + vbYesNoCancel)

        If nMsgResult = vbCancel Then
            Exit Sub
        End If

        If nMsgResult = vbYes Then
            bSkipEmail = False
        Else
            bSkipEmail = True
        End If
    End If

    If Not bSkipEmail Then
        ' Save the email to file on disk
        oMail.SaveAs sPath & sName & sExt, olMSG
        
        ' Set the Modified Timestamp of the file to the Sent Timestamp
        Result = SetFileDateTime(FileName:=sPath & sName & sExt, _
            FileDateTime:=oMail.SentOn, _
            WhichDateToChange:=FileDateLastModified, _
            NoGMTConvert:=False)
        
        If Result = False Then
            Debug.Print "An error occurred with SetFileDateTime."
        Else
            ' If all is well, add a category called "Saved" to the email in the
            ' Outlook Mailbox to flag that it's been saved
            AddCategoryToEmail oMail, "Saved"
            oMail.Save
        End If

        For Each oAttachment In oMail.Attachments
            bSkipAttachment = False
            oRegEx.Pattern = "^(.*?)(\.?[^.]*)$"
            sAttName = oRegEx.Replace(oAttachment.FileName, "$1")
            sAttExt = LCase(oRegEx.Replace(oAttachment.FileName, "$2"))
            iSize = oAttachment.Size


            ' Differentiate between attachments which are embedded inline, and explicit attachments
            Const PR_ATTACHMENT_HIDDEN = "http://schemas.microsoft.com/mapi/proptag/0x7FFE000B"

            vPropNames = Array(PR_ATTACHMENT_HIDDEN)
            vTemp = oAttachment.PropertyAccessor.GetProperties(vPropNames)

            bHiddenProp = Not IsError(vTemp(0))

            bSkipAttachment = False

            If bHiddenProp Then
                Select Case sAttExt
                    Case ""
                        bSkipAttachment = True
                    Case "."
                        bSkipAttachment = True
                    Case ".png"
                        bSkipAttachment = True
                    Case ".jpg"
                        bSkipAttachment = True
                    Case ".gif"
                        bSkipAttachment = True
                    Case Else
                        ' Don't skip hidden attachments which aren't in the above list
                        bSkipAttachment = False
                End Select
            End If

            ' Ignore files which look like: F4F90AC9@CEDD0C72.18bc1a5d
            ' regardless of whether tagged as hidden or not
            oRegEx.Pattern = "^\.[0-9a-fA-F]{5,}$"
            If oRegEx.Test(sAttExt) Then
                bSkipAttachment = True
            End If
            
            ' Ignore files which have no extension
            ' regardless of whether tagged as hidden or not
            oRegEx.Pattern = "^\.{0,1}$"
            If oRegEx.Test(sAttExt) Then
                bSkipAttachment = True
            End If

            If Not bSkipAttachment Then
                sName = "E " & sDateTime & " ___ " & sAttName

                MakeFileNameUnique sPath, sName, sAttExt

                oAttachment.SaveAsFile sPath & sName & sAttExt
                
                Result = SetFileDateTime(FileName:=sPath & sName & sAttExt, _
                    FileDateTime:=oMail.SentOn, _
                    WhichDateToChange:=FileDateLastModified, _
                    NoGMTConvert:=False)
                
                If Result = False Then
                    Debug.Print "An error occurred with SetFileDateTime."
                End If
            End If
        Next
    End If
End Sub


'------------------------------------------------------------------------
Private Sub ReplaceCharsForFileName(sName As String, _
    sChr As String _
)
    sName = Replace(sName, "'", sChr)
    sName = Replace(sName, "*", sChr)
    sName = Replace(sName, "/", sChr)
    sName = Replace(sName, "\", sChr)
    sName = Replace(sName, ":", sChr)
    sName = Replace(sName, "?", sChr)
    sName = Replace(sName, Chr(34), sChr)
    sName = Replace(sName, "<", sChr)
    sName = Replace(sName, ">", sChr)
    sName = Replace(sName, "|", sChr)
End Sub

'------------------------------------------------------------------------
Private Sub GetDateString(oMail As Outlook.MailItem, _
sDateString As String _
)
    Dim dtDate As Date

    dtDate = oMail.SentOn
    sDateString = Format(dtDate, "yyyymmdd", vbUseSystemDayOfWeek, vbUseSystem) & _
        Format(dtDate, "-hhnn", vbUseSystemDayOfWeek, vbUseSystem)
End Sub

'------------------------------------------------------------------------
Private Sub AddCategoryToEmail(ByRef oMail As Outlook.MailItem, _
   sNewCategory As String _
)
    Dim sCategorySeparator As String
    Dim sCategories() As String
    Dim bNewCatExist As Boolean
    Dim sOne As Variant

    sCategorySeparator = RegKeyRead("HKEY_CURRENT_USER\Control Panel\International\sList")
    If Len(sCategorySeparator) <> 1 Then
        sCategorySeparator = ","
    End If

    sCategories = Split(oMail.Categories, sCategorySeparator)
    
    bNewCatExist = False
    For Each sOne In sCategories
        If StrComp(UCase(sOne), UCase(sNewCategory), vbTextCompare) = 0 Then
            bNewCatExist = True
            Exit For
        End If
    Next sOne
 
    If Not bNewCatExist Then
        ReDim Preserve sCategories(UBound(sCategories) + 1)
        sCategories(UBound(sCategories)) = sNewCategory
        
        oMail.Categories = Join(sCategories, sCategorySeparator)
    End If
End Sub

'------------------------------------------------------------------------
Private Sub GetSenderString(oMail As Outlook.MailItem, _
sSenderString As String _
)
    Dim objRegEx As Object
    Dim oMatches As Object
    Dim oMatch As Object
    Dim sSenderName As String
    Dim sInitials As String
    Dim sSenderAddress As String
    Dim sDomain As String
    Dim sTemp As String

    Set objRegEx = CreateObject("vbscript.regexp")

'    MsgBox "Subject: " & oMail.Subject & vbCrLf & _
'        "SentOn: " & oMail.SentOn & vbCrLf & _
'        "SenderName: " & oMail.SenderName & vbCrLf & _
'        "SenderAddress: " & oMail.SenderEmailAddress & vbCrLf & _
'        "SenderEmailType: " & oMail.SenderEmailType

    ' Process the Sender Name

    With objRegEx
        .Global = True
        .MultiLine = True
        .IgnoreCase = True
    End With

    sSenderName = oMail.SenderName
    sSenderAddress = oMail.SenderEmailAddress

    ' Remove any email address add on in the sender name
    objRegEx.Pattern = "\S+@[^\.]\S*\.\w{2,}"
    If objRegEx.Test(sSenderName) Then
        sTemp = objRegEx.Replace(sSenderName, "")
    End If

    ' Trim any leading and/or trailing white space
    objRegEx.Pattern = "^\s*(.*?)\s*$"
    sTemp = objRegEx.Replace(sTemp, "$1")

    If Len(sTemp) = 0 Then
        objRegEx.Pattern = "(\S+)@[^\.]\S*\.\w{2,}"
        sTemp = objRegEx.Replace(sSenderName, "$1")
    End If

    sSenderName = sTemp

    ' Remove anything between brackets
    objRegEx.Pattern = "(\([^()]*\)|\[[^\[\]]*\]|\{[^{}]*\}|<[^<>]*>)"
    If objRegEx.Test(sSenderName) Then
        sSenderName = objRegEx.Replace(sSenderName, "")
    End If

    ' If the Sender name is in "Surname, Name" format, then switch it around
    objRegEx.Pattern = "^([^,]+),([^,]+)$"
    If objRegEx.Test(sSenderName) Then
        sSenderName = objRegEx.Replace(sSenderName, "$2 $1")
    End If

    objRegEx.Pattern = "\b\w"
    Set oMatches = objRegEx.Execute(sSenderName)

    sInitials = ""
    For Each oMatch In oMatches
        sInitials = sInitials & UCase(oMatch.Value)
    Next

    sDomain = ""
    If oMail.SenderEmailType = "SMTP" Then
        objRegEx.Pattern = "@[^.]*"
        Set oMatches = objRegEx.Execute(sSenderAddress)
        For Each oMatch In oMatches
            sDomain = LCase(oMatch.Value)
            Exit For
        Next
    Else
        sDomain = "@local"
    End If

    sSenderString = sInitials & sDomain
End Sub

'------------------------------------------------------------------------
Private Sub GetSubjectString(oMail As Outlook.MailItem, _
sSubjectString As String _
)
    Dim objRegEx As Object
    Dim sName As String

    sName = oMail.Subject

    Set objRegEx = CreateObject("vbscript.regexp")

    With objRegEx
        .Global = True
        .MultiLine = True
        .IgnoreCase = True
    End With

    ' Remove duplicate "RE" strings
    objRegEx.Pattern = "(re\W+)(re\W+)+"
    sName = objRegEx.Replace(sName, "$1")

    ' Remove duplicate "FW" strings
    objRegEx.Pattern = "(fwd?\W+)(fwd?\W+)+"
    sName = objRegEx.Replace(sName, "$1")

    ReplaceCharsForFileName sName, " "

    ' Trim any leading and/or trailing white space
    objRegEx.Pattern = "^\s*(.*?)\.*\s*$"
    sName = objRegEx.Replace(sName, "$1")

    ' Trim any double spaces
    objRegEx.Pattern = "\s+"
    sName = objRegEx.Replace(sName, " ")

    ' Limit the length to 100 characters
    sName = Left(sName, 100)

    If Len(sName) = 0 Then
        sName = "No Subject"
    End If

    sSubjectString = sName
End Sub

'------------------------------------------------------------------------
Private Sub MakeFileNameUnique(sPath As String, sFileName As String, sExt As String _
)
    Dim oRegEx As Object
    Dim sIntExt As String
    Dim sIntPath As String
    Dim sIntFileName As String
    Dim sTestName As String
    Dim i As Integer

    Set oRegEx = CreateObject("vbscript.regexp")

    If Len(sExt) <> 0 Then
        oRegEx.Pattern = "^\.*"
        sIntExt = oRegEx.Replace(sExt, ".") ' Make sure the ext has a "."
    Else
        sIntExt = ""
    End If


    oRegEx.Pattern = "\\*$"
    sIntPath = oRegEx.Replace(sPath, "") ' Remove the trailing backslash, for now

    If Len(Dir(sIntPath, vbDirectory)) = 0 Then
        ' Bigger problems, the directory doesn't exist!
        Exit Sub
    End If

    sIntPath = sIntPath + "\"
    sIntFileName = sFileName
    sTestName = Dir(sIntPath & sIntFileName & sIntExt)

    i = 0
    Do While sTestName <> ""
        i = i + 1
        sIntFileName = sFileName & "-" & i
        sTestName = Dir(sIntPath & sIntFileName & sIntExt)
    Loop
    sFileName = sIntFileName
End Sub

'------------------------------------------------------------------------
Private Function TestDirExist(sPath As String) As Boolean
    Dim sIntPath As String
    Dim oRegEx As Object
    Set oRegEx = CreateObject("vbscript.regexp")

    oRegEx.Pattern = "\\*$"
    sIntPath = oRegEx.Replace(sPath, "") ' Remove any trailing backslash
    If Len(Dir(sIntPath, vbDirectory)) = 0 Then
        TestDirExist = False
    Else
        TestDirExist = True
    End If
End Function

'------------------------------------------------------------------------
Private Function TestFileExist(sPath As String) As Boolean
    If Len(Dir(sPath)) = 0 Then
        TestFileExist = False
    Else
        TestFileExist = True
    End If
End Function


'------------------------------------------------------------------------
Function BrowseForFolder(Optional OpenAt As Variant) As Variant
  Dim ShellApp As Object
  Set ShellApp = CreateObject("Shell.Application"). _
 BrowseForFolder(0, "Please choose a folder", 0, OpenAt)
 
 On Error Resume Next
    BrowseForFolder = ShellApp.self.Path
 On Error GoTo 0
 
 Set ShellApp = Nothing
    Select Case Mid(BrowseForFolder, 2, 1)
        Case Is = ":"
            If Left(BrowseForFolder, 1) = ":" Then GoTo Invalid
        Case Is = "\"
            If Not Left(BrowseForFolder, 1) = "\" Then GoTo Invalid
        Case Else
            GoTo Invalid
    End Select
 Exit Function
 
Invalid:
 BrowseForFolder = False
End Function

'reads the value for the registry key i_RegKey
'if the key cannot be found, the return value is ""
' https://vba-corner.livejournal.com/3054.html
Function RegKeyRead(i_RegKey As String) As String
Dim myWS As Object

  On Error Resume Next
  'access Windows scripting
  Set myWS = CreateObject("WScript.Shell")
  'read key from registry
  RegKeyRead = myWS.RegRead(i_RegKey)
End Function