Account

Email server account for built-in client operations.

Email client account configuration management API.

Email client uses account configurations stored in files on Aspose Cloud Storage. These files should include email account credentials and email server configuration.

There are two types of email account configuration files. One of them stores a single email account and has a ‘.account’ extension. Another one has a ‘.multi.account’ extension and used for virtual multi-account client functions. The multi-account client should be used to manage several email accounts as a single one. For example, you can use one request to find messages in all accounts attached to the multi-account client.

Link to email account configuration should be provided in most of email client API functions.

Get

Get email client account from storage. Returns EmailClientAccount model. Requires:

request

Get method request. Type: ClientAccountGetRequest.

GetMulti

Get email client multi account file (*.multi.account). Will respond error if file extension is not ".multi.account". Returns EmailClientMultiAccount model. Requires:

request

GetMulti method request. Type: ClientAccountGetMultiRequest.

Save

Create/update email client account file (*.account) with credentials. Requires:

request

Email account information. Type: ClientAccountSaveRequest.

SaveMulti

Create email client multi account file (*.multi.account). Will respond error if file extension is not ".multi.account". Requires:

request

Email accounts information. Type: ClientAccountSaveMultiRequest.

More APIs