Class NSMailboxEntity
Syntax
Constructors
NSMailboxEntity()
Declaration
Methods
GetAddress()
Declaration
Returns
Type |
Description |
String |
The address associated with this mailbox (used as FROM address when sending emails).
|
Examples
NSMailboxEntity thing;
String address = thing.GetAddress();
GetMailInFilterId()
Declaration
Integer GetMailInFilterId()
Returns
Type |
Description |
Integer |
The primary key (auto-incremented).
|
Examples
NSMailboxEntity thing;
Integer mailInFilterId = thing.GetMailInFilterId();
GetPassword()
Declaration
Returns
Type |
Description |
String |
The password used to log into the mail account. This is hidden when reading.
|
Examples
NSMailboxEntity thing;
String password = thing.GetPassword();
GetPort()
Declaration
Returns
Type |
Description |
Integer |
The port used to connect to the server.
|
Examples
NSMailboxEntity thing;
Integer port = thing.GetPort();
GetServer()
Declaration
Returns
Type |
Description |
String |
The email server to connect to.
|
Examples
NSMailboxEntity thing;
String server = thing.GetServer();
GetServerType()
Declaration
Returns
Examples
NSMailboxEntity thing;
Integer serverType = thing.GetServerType();
GetUsername()
Declaration
Returns
Type |
Description |
String |
nThe username used to log onto the mail account.
|
Examples
NSMailboxEntity thing;
String username = thing.GetUsername();
SetAddress(String)
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
Examples
NSMailboxEntity thing;
String address;
thing.SetAddress(address);
SetMailInFilterId(Integer)
Declaration
Void SetMailInFilterId(Integer mailInFilterId)
Parameters
Type |
Name |
Description |
Integer |
mailInFilterId |
The primary key (auto-incremented).
|
Returns
Examples
NSMailboxEntity thing;
Integer mailInFilterId;
thing.SetMailInFilterId(mailInFilterId);
SetPassword(String)
Declaration
Void SetPassword(String password)
Parameters
Type |
Name |
Description |
String |
password |
The password used to log into the mail account. This is hidden when reading.
|
Returns
Examples
NSMailboxEntity thing;
String password;
thing.SetPassword(password);
SetPort(Integer)
Declaration
Void SetPort(Integer port)
Parameters
Type |
Name |
Description |
Integer |
port |
The port used to connect to the server.
|
Returns
Examples
NSMailboxEntity thing;
Integer port;
thing.SetPort(port);
SetServer(String)
Declaration
Void SetServer(String server)
Parameters
Type |
Name |
Description |
String |
server |
The email server to connect to.
|
Returns
Examples
NSMailboxEntity thing;
String server;
thing.SetServer(server);
SetServerType(Integer)
Declaration
Void SetServerType(Integer serverType)
Parameters
Returns
Examples
NSMailboxEntity thing;
Integer serverType;
thing.SetServerType(serverType);
SetUsername(String)
Declaration
Void SetUsername(String username)
Parameters
Type |
Name |
Description |
String |
username |
The username used to log onto the mail account.
|
Returns
Examples
NSMailboxEntity thing;
String username;
thing.SetUsername(username);