Skip to content

Attachment Object


Overview

The attachment object holds file information for the MailItem to access.

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)

Dim attachment As nlsMailer.Attachment
Set attachment = mailItem.Attachments.Add("C:\Users\User\Documents\Test.txt")

With attachment
    Debug.Print .DisplayName
    Debug.Print .FileName
    Debug.Print .PathName
    Debug.Print .Size
End With

Methods

Name Type
Delete Void

Properties

Name Type
AttachmentType olAttachmentType
Class olObjectClass
DisplayName String
FileName String
Index Long
Parent Attachments
PathName String
Size Long