|
|
|
|
|
EmailChangeFolder (Function) In french: EmailChangeDossier Modifies the current folder in the messaging software (Outlook, messaging software using the IMAP protocol, ...). This folder is found in the "Personal folders" branch. Please note: "Generic folder" type folders are not managed.. Reminder: This function cannot be used to modify the current folder in Outlook Express. // IMAP protocol IF EmailStartIMAPSession(EDT_USER, EDT_PASSWORD, ... "imap.mydomain.fr") = True THEN EmailChangeFolder(EDT_USER, "Personal folders\Inbox\Work") ... ELSE Error("Unable to establish the connection") END
Syntax
<Result> = EmailChangeFolder(<Session> , <Folder path>)
<Result>: Boolean - True if the modification was performed,
- False otherwise (the specified path does not exist for example). If an error occurs, the ErrorOccurred variable is set to True. To get more details on the error, use ErrorInfo with the errMessage constant.
<Session>: Character string, integer, or emailOutlookSession or emailIMAPSession variable Identifier of the current email session. This identifier can be: <Folder path>: Unicode string Path of new current folder.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|