Skip to content

Application Object


Overview

The application object is the root object of the nlsMailer library. It serves two core functions: Creating objects, and handling accounts. For the first, it is the link between the account and created items, in which each item is created specific to the account type. For the second, it gives access to the accounts object, where accounts can be created and accessed.

Example

The following code example demonstrates the creation of an application and accessing it's main features:

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

' Creates an account 
Dim accOne As nlsMailer.Account
Set accOne = MailerApp.Accounts.Add SMTPAddress:="test@example.com", _
                                    ApiKey:="api-key-0123456789", _
                                    ApiUrl:="https://apiUrl.com", _
                                    AccountType:=olMailgun olMailgun

' Creates a mail item
Dim mailItem As mailItem
Set mailItem = MailerApp.CreateItem(olMailItem)

Methods

Name Type
CreateItem Object

Properties

Name Type
Accounts Accounts
Name String