Skip to content

Item


Overview

The Item method finds and returns a Recipient object from the Recipients object collection.

Syntax

vba
Recipients.Item(Index)
Parameter Name Required/Optional Type Description
Index Required Variant The index number of the Recipient object, or the full email address of the Recipient object

Return Value

Returns a Recipient object from the Recipients object collection with the specified index.

Example

Example code snippet demonstrating how to access an attachment using Item():

vba
Dim recipient As Recipient
Set recipient = Recipients.Item(1)