Kategorien
Software-Entwicklung

Using Outlook through VB Script

To automate MS Outlook, you usually use macros (written in Visual Basic for Applications aka VBA). But often, company security policies denies access to Outlook Macros. But you can still use VB Script aka VBS.

Here I show two scripts that copy parts of an Outlook email to the Windows clipboard. A third script forwards all selected mails to an email address. I am not an VBS expert but have put them together from various other scripts and solutions around the web.

I use these scripts with Windows XP and Outlook 2003.

Copy mail content to clipboard

I use Emacs org-mode as an TODO-List and journaling application. When I want to reference an email in a task or journal entry I can either quote the email or link to it. The easiest way is to get the appropiate content into the clipboard and yank it in the org-mode buffer.

As far as I know, the Windows clipboard is directly available to VBA scripts. But not so for VB scripts. According to the net, there are several workarounds. The one I use here makes use of the Internet Explorer Object: it opens the „about:blank“ page and gets access to the clipboard through its „parentwindow“ property. To avoid a security question I added „about:blank“ to the list of local sites in the Internet Explorer security settings.

Dim oe
Dim mi
Dim strMH
Set myOlApp = WScript.CreateObject("Outlook.Application")
Set oe = myOlApp.ActiveExplorer
If oe.Selection.Count = 1 And oe.CurrentFolder.DefaultItemType = olMailItem Then
Set mi = oe.Selection.Item(1)
strMH = "From:" & vbTab & mi.SenderName & vbCrLf & _
"Sent:" & vbTab & mi.SentOn & vbCrLf & _
"To:" & vbTab & mi.To & vbCrLf & _
"Cc:" & vbTab & mi.Cc & vbCrLf & _
"Sub:" & vbTab & mi.Subject & vbCrLf & vbCrLf
Set objIE = CreateObject("InternetExplorer.Application")
objIE.Navigate("about:blank")
objIE.document.parentwindow.clipboardData.SetData "text", strMH & mi.Body
objIE.Quit
WScript.echo "Nachricht im Clipboard: " & mi.subject
Else
WScript.echo "Select one and ONLY one message."
End If
view raw gistfile1.vb hosted with ❤ by GitHub

In org-mode you can have links and using org-outlook you can have links to specifc outlook message. You need the GUID of the specific message. One caveat here: that GUID changes when you move that message to a different folder.

Dim oe
Dim mi
Dim strMH
Set myOlApp = WScript.CreateObject("Outlook.Application")
Set oe = myOlApp.ActiveExplorer
If oe.Selection.Count = 1 And oe.CurrentFolder.DefaultItemType = olMailItem Then
Set mi = oe.Selection.Item(1)
Set objMail = mi
Set objIE = CreateObject("InternetExplorer.Application")
objIE.Navigate("about:blank")
objIE.document.parentwindow.clipboardData.SetData "text", "[[outlook:" + objMail.EntryID + "][" + objMail.Subject + " (" + objMail.SenderName + ")]]"
objIE.Quit
WScript.echo "Mail-Link kopiert: " & mi.subject
Else
WScript.echo "Select one and ONLY one message."
End If
view raw gistfile1.vb hosted with ❤ by GitHub

Mass forward emails

The Outlook API provides an method to forward a mail. It behaves just like you would hit „forward“ in the GUI. Fill the recipient with a mail address and call the mail’s „send“ method. But wait: there will be a security questions that will ask you to confirm that you really want to send this mail. You have to wait 5 seconds to confirm it. This slows down mass forwarding… The following script loops through all selected mails in Outlook and forwards them.

Dim oe
Dim mi
Set myOlApp = WScript.CreateObject("Outlook.Application")
Set oe = myOlApp.ActiveExplorer
If oe.Selection.Count > 0 And oe.CurrentFolder.DefaultItemType = olMailItem Then
For Each item In oe.Selection
REM Set mi = oe.Selection.Item(1)
Dim retValue
retValue = MsgBox("Sent: " & item.Subject, 4)
If retValue = vbYes Then
Set oOMail = item.Forward
On Error Resume Next
With oOMail
.To = "test@example.org"
.Display
.Send
.Close
End With
End If
Next
Else
WScript.echo "Select at least one message."
End If
view raw gistfile1.vb hosted with ❤ by GitHub

I have seen one trick that claims to await the 5-second-confirmation-dialog: it uses some other VB object to simulate a „Alt-S“ keystroke so that it seems the user himself press „Send“ in the GUI. Don’t know if that works.

Assign keyboard shortcuts

I created shortcuts on the desktop to these scripts. For the first two scripts I assigned keyboard shortcut (C-F7 and C-S-F7 resp.) That way I do not need to navigate to the script to execute it.