|
|
|
|
|
EmailAddFolder (Function) In french: EmailAjouteDossier Adds a folder into the messaging software (Outlook, messaging software using the IMAP protocol (Internet Message Access Protocol), ...). This folder is created in the "Personal folders" branch. Reminder: This function cannot be used to add a folder in Outlook Express.
// 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> = EmailAddFolder(<Session> , <Folder path>)
<Result>: Boolean - True if the addition was performed,
- False otherwise. 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 folder to create. This path must necessarily start with "Personal folders".If this path contains several branches that do not exist, all the branches are created.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|