Skip to content

Remove


Overview

The Remove method removes an Account object from the Accounts object collection.

Syntax

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

Example

Example code snippet demonstrating how to remove a recipient:

vba
Dim MailerApp As New nlsMailer.Application
Dim newAccount As Account

Set newAccount = MailerApp.Accounts.Add("account@example.com", olMailgun)
MailerApp.Accounts.Remove(1)