Class NSMailbox

Carrier containing information about a Service mailbox.

Constructors

NSMailbox()

Initializes a new instance of the NSMailbox class.

Declaration

NSMailbox

Methods

GetAddress()

Declaration

String GetAddress()

Examples

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

Returns

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

GetCategoryName()

The name of the category that the mailbox is connected to

Declaration

String GetCategoryName()

Examples

NSMailbox thing;
String categoryName = thing.GetCategoryName();

Returns

Type Description
String

GetMailInFilterId()

Declaration

Integer GetMailInFilterId()

Examples

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

Returns

Type Description
Integer The primary key (auto-incremented).

GetPriorityName()

Declaration

String GetPriorityName()

Examples

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

Returns

Type Description
String The name of the priority that the mailbox is connected to.

SetAddress(String)

Declaration

Void SetAddress(String address)

Examples

NSMailbox thing;
String address;
thing.SetAddress(address);

Parameters

Type Name Description
String address The address associated with this mailbox (used as FROM address when sending emails).

Returns

Type Description
Void

SetCategoryName(String)

Declaration

Void SetCategoryName(String categoryName)

Examples

NSMailbox thing;
String categoryName;
thing.SetCategoryName(categoryName);

Parameters

Type Name Description
String categoryName The name of the category that the mailbox is connected to.

Returns

Type Description
Void

SetMailInFilterId(Integer)

The primary key (auto-incremented)

Declaration

Void SetMailInFilterId(Integer mailInFilterId)

Examples

NSMailbox thing;
Integer mailInFilterId;
thing.SetMailInFilterId(mailInFilterId);

Parameters

Type Name Description
Integer mailInFilterId

Returns

Type Description
Void

SetPriorityName(String)

The name of the priority that the mailbox is connected to

Declaration

Void SetPriorityName(String priorityName)

Examples

NSMailbox thing;
String priorityName;
thing.SetPriorityName(priorityName);

Parameters

Type Name Description
String priorityName

Returns

Type Description
Void