Skip to content

Remove


Overview

The Remove method removes an Attachment object from the Attachments object collection.

Syntax

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

Example

Example code snippet demonstrating how to remove an attachment:

vba
Dim MailerApp As New nlsMailer.Application
Dim newMailItem As MailItem
Dim newMailAttachment As Attachment

Set newMailItem = MailerApp.CreateItem(olMailItem)
Set newMailAttachment = newMailItem.Attachments.Add("C:\Users\Users\Documents\Test.txt")
newMailItem.Attachments.Remove(1)