Show / Hide Table of Contents

Class NSMailbox

Carrier containing information about a Service mailbox.

Syntax

Constructors

NSMailbox()

Initializes a new instance of the NSMailbox class.

Introduced or updated in version: 8.5R08

Declaration
NSMailbox

Methods

GetAddress()

Introduced or updated in version: 8.5R08

Declaration
String GetAddress()
Returns
Type Description
String

The address associated with this mailbox (used as FROM address when sending emails).

Examples
NSMailbox thing;
String address = thing.GetAddress();

GetCategoryName()

The name of the category that the mailbox is connected to

Introduced or updated in version: 8.5R08

Declaration
String GetCategoryName()
Returns
Type Description
String
Examples
NSMailbox thing;
String categoryName = thing.GetCategoryName();

GetMailInFilterId()

Introduced or updated in version: 8.5R08

Declaration
Integer GetMailInFilterId()
Returns
Type Description
Integer

The primary key (auto-incremented).

Examples
NSMailbox thing;
Integer mailInFilterId = thing.GetMailInFilterId();

GetPriorityName()

Introduced or updated in version: 8.5R08

Declaration
String GetPriorityName()
Returns
Type Description
String

The name of the priority that the mailbox is connected to.

Examples
NSMailbox thing;
String priorityName = thing.GetPriorityName();

SetAddress(String)

Introduced or updated in version: 8.5R08

Declaration
Void SetAddress(String address)
Parameters
Type Name Description
String address

The address associated with this mailbox (used as FROM address when sending emails).

Returns
Type Description
Void
Examples
NSMailbox thing;
String address;
thing.SetAddress(address);

SetCategoryName(String)

Introduced or updated in version: 8.5R08

Declaration
Void SetCategoryName(String categoryName)
Parameters
Type Name Description
String categoryName

The name of the category that the mailbox is connected to.

Returns
Type Description
Void
Examples
NSMailbox thing;
String categoryName;
thing.SetCategoryName(categoryName);

SetMailInFilterId(Integer)

The primary key (auto-incremented)

Introduced or updated in version: 8.5R08

Declaration
Void SetMailInFilterId(Integer mailInFilterId)
Parameters
Type Name Description
Integer mailInFilterId
Returns
Type Description
Void
Examples
NSMailbox thing;
Integer mailInFilterId;
thing.SetMailInFilterId(mailInFilterId);

SetPriorityName(String)

The name of the priority that the mailbox is connected to

Introduced or updated in version: 8.5R08

Declaration
Void SetPriorityName(String priorityName)
Parameters
Type Name Description
String priorityName
Returns
Type Description
Void
Examples
NSMailbox thing;
String priorityName;
thing.SetPriorityName(priorityName);
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Contribute |  Back to top