Skip to content

Attachments Object


Overview

The attachments object holds all attachment information, where it can be accessed through the MailItem.

Example

The following code example demonstrates this capability:

vba
' Initializes the nlsMailer Application
Dim MailerApp As nlsMailer.Application
Set MailerApp = New nlsMailer.Application

' Adds an account
Dim accOne As nlsMailer.Account
Set accOne = MailerApp.Accounts.Add "Person 1", "testone@example.com", "api-key-01234", "https://apiUrlOne.com", olMailgun

Dim mailItem As nlsMailer.MailItem  
Set mailItem = MailerApp.CreateItem(olMailItem)

' Handles attachment object through attachments
Dim attachment As nlsMailer.Attachment
Set attachment = mailItem.Attachments.Add("C:\Users\User\Documents\Test.txt")
Set attachment = mailItem.Attachments.Item(1)

Methods

Name Type
Add Attachment
Item Attachment
Remove Void

Properties

Name Type
Class olObjectClass
Count Long
Parent MailItem