ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Communication / Managing emails
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Adds a folder into the messaging software using IMAP (Internet Message Access Protocol), ...
This folder is created in the "Personal folders" branch.
Example
// Protocole IMAP
MaSession is emailIMAPSession
...
// Création d'un dossier dans le dossier en cours 
MaSession.AddFolder(MaSession.CurrentFolder() + "\Travail")

// Création d'un dossier dans le dossier personnel
MaSession.AddFolder("Dossiers personnels\Boîte de réception\TravailPerso")
Syntax
<Result> = <Session>.AddFolder(<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>: emailIMAPSession variable
Name of the variable of type emailIMAPSession that corresponds to the current email session.
<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.
Component: wd300com.dll
Minimum version required
  • Version 24
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 03/18/2025

Send a report | Local help