Skip to content

Add


Overview

The Add method creates and adds a new Recipient object to the Recipients object collection.

Syntax

vba
Recipients.Add(EmailAddress)
Parameter Name Required/Optional Type Description
EmailAddress Required String The full email address of the recipient

Return Value

Returns a newly created Recipient object with the specified address.

Example

Example code snippet demonstrating how to add an attachment:

vba
Set newRecipients = Recipients.Add("recipient@example.com")