Skip to content

Remove


Overview

The Remove method removes a Recipient object from the Recipients object collection.

Syntax

vba
Recipients.Remove(Index)
Parameter Name Required/Optional Type Description
Index Required Long The index number of the Recipient object

Example

Example code snippet demonstrating how to remove a recipient:

vba
Dim MailerApp As New nlsMailer.Application
Dim newMailItem As MailItem
Dim newMailRecipient As Recipient

Set newMailItem = MailerApp.CreateItem(olMailItem)
Set newMailRecipient = newMailItem.Recipients.Add("recipient@example.com")
newMailItem.Recipients.Remove(1)