Capture Inbound E-mail Subject with VBA
What is an 'inbound e-mail's subject'?
This prompts the subject of the first selected item in the current folder:
Dim Sel as Outlook.Selection
Set Sel=Application.ActiveExplorer.Selection
If Sel.Count0 Then Msgbox Sel(1).Subject
--
Best regards
Michael Bauer - MVP Outlook
: Outlook Categories? Category Manager Is Your Tool
: VBOffice Reporter for Data Analysis & Reporting
: http://www.vboffice.net/product.html?pub=6&lang=en
Am Wed, 2 Sep 2009 20:08:01 -0700 schrieb Brad:
I am just starting to experiment with Outlook VBA.
I am looking for a simple example of how to capture the content of an
inbound e-mail’s subject so that I can see it in VBA code.
For my first step, I would simply like to be able to do a MSGBOX to
display
the captured Subject.
Thanks for your help,
Brad
|