Accounts
Overview
The Accounts
property is a read-only property of the Application
class that returns the collection of email accounts associated with the application. It provides access to the configured email accounts and is initialized automatically when the Application
class is created.
Syntax
Return Value
Returns an Accounts
collection object that contains the email accounts configured for the application.
Example
This example demonstrates how to access the Accounts property and perform operations like checking the number of accounts or accessing a specific account:
vba
Sub AccountsExample()
Dim app As New nlsMailer.Application
Dim accountsCollection As Accounts
' Retrieve the Accounts collection
Set accountsCollection = app.Accounts
' Check the number of accounts
Dim accountCount As Long
accountCount = accountsCollection.Count
' Display the number of accounts
Debug.Print "Total accounts: " & accountCount
' Access the first account (if exists)
If accountCount > 0 Then
Dim firstAccount As Account
Set firstAccount = accountsCollection.Item(1)
' Perform operations with the first account
Debug.Print "First Account Type: " & firstAccount.AccountType
End If
End Sub