Actions Object

Outlook Developer Reference

Contains a collection of Action objects that represent all the specialized actions that can be executed on an Outlook item.

Remarks

Use the Actions property of any Outlook item, such as MailItem, to return the Actions object.

Use Actions(

index

), where

index

is the name of an available action, to return a single Action object.

Example

The following Visual Basic for Applications (VBA) example uses the Reply action of a particular item to send a reply.

Visual Basic for Applications
  myItem = CreateItem(olMailItem)
Set myReply = myItem.Actions("Reply").Execute

See Also