Skip to content

Delete


Overview

The Delete subroutine removes the current Recipient from its parent object collection

Syntax

vba
Recipient.Delete

Example

Example code snippet demonstrating how to delete an attachment:

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")
newMailRecipient.Delete