Class NSMailbox
Carrier containing information about a Service mailbox.
Syntax
Constructors
NSMailbox()
Initializes a new instance of the NSMailbox class.
Declaration
NSMailbox
Methods
GetAddress()
Carrier containing information about a Service mailbox.
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
Declaration
String GetCategoryName()
Returns
Type | Description |
---|---|
String |
Examples
NSMailbox thing;
String categoryName = thing.GetCategoryName();
GetMailInFilterId()
Carrier containing information about a Service mailbox.
Declaration
Integer GetMailInFilterId()
Returns
Type | Description |
---|---|
Integer | The primary key (auto-incremented). |
Examples
NSMailbox thing;
Integer mailInFilterId = thing.GetMailInFilterId();
GetPriorityName()
Carrier containing information about a Service mailbox.
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)
Carrier containing information about a Service mailbox.
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)
Carrier containing information about a Service mailbox.
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)
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
Declaration
Void SetPriorityName(String priorityName)
Parameters
Type | Name | Description |
---|---|---|
String | priorityName |
Returns
Type | Description |
---|---|
Void |
Examples
NSMailbox thing;
String priorityName;
thing.SetPriorityName(priorityName);