Application.MAPIAvailable Property (Word)
True if MAPI is installed. Read-only Boolean.
Syntax
expression .MAPIAvailable
expression An expression that returns an Application object.
Example
This example displays a message if MAPI is installed.
If Application.MAPIAvailable = True Then
MsgBox "MAPI is available"
End If