|
|
|
|
|
EmailCurrentFolder (Function) In french: EmailDossierCourant Returns the name of current folder in the messaging software (Outlook, messaging software using the IMAP protocol (Internet Message Access Protocol), ...). This folder is found in the "Personal folders" branch. // IMAP protocol MySession is emailIMAPSession ... // Create a folder in the current folder EmailAddFolder(MySession, EmailCurrentFolder(MySession) + "\Work") // Create a folder in the custom folder EmailAddFolder(MySession, "Personal folders\Inbox\MyOwnWork")
Syntax
<Result> = EmailCurrentFolder(<Session>)
<Result>: Character string - Name of current folder,
- Empty string ("") if an error occurred. 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:
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|