Resolve Method

Applies To

Recipient object.

Description

Attempts to resolve a Recipient object. Returns True if the object was resolved, False if it was not.

Syntax

expression.Resolve

expression An expression that returns a Recipient object.

See Also

ResolveAll method, Resolved property.

Example

This example attempts to resolve a recipient and, if unsuccessful, displays the item so a user can resolve it manually.

Set myItem = myOlApp.CreateItem(olMailItem)
Set myRecipient = myItem.Recipients.Add("Tim O'Brien")
If Not myRecipient.Resolve Then myItem.Display