Outlook 2003 - Reformat email content in reading Mode
Hi Adrei,
I appreciate your gesture for introducing me to a very powerful, robust and flexible tools which are indepensible for any ambitious developers/programmers.
However, since my requirement was a limited one, I managed to accomplish with the following concept:
In the outlook Project1 (ThisOutlookSession)-
---------------------------------------------
Public WithEvents olInspectors As Outlook.Inspectors
Private Sub Application_Startup()
Set olInspectors = Application.Inspectors
End Sub
Private Sub olInspectors_NewInspector(ByVal Inspector As Outlook.Inspector)
'Subroutine calls to work with the Outlook mail message body
ComposeMessageForPhoneNumber
End Sub
---------------------------------------------
Thanks once again!
|