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
Modifies the current folder in the messaging software using the IMAP.
This folder is found in the "Personal folders" branch.
Please note: "Generic folder" type folders are not managed.
Example
// Protocole IMAP
SAI_USER is emailIMAPSession
...
IF EmailStartIMAPSession(SAI_USER, SAI_PASSWORD, ...
		"imap.mondomaine.fr") = True THEN
	SAI_USER.ChangeFolder("Dossiers personnels\Boîte de réception\Travail") 
	...
ELSE
	Error("Impossible d'établir la connexion")
END
Syntax
<Result> = <Session>.ChangeFolder(<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>: emailIMAPSession variable
Name of the variable of type emailIMAPSession that corresponds to the current email session.
<Folder path>: Unicode string
Path of new current folder.
Component: wd300com.dll
Minimum version required
  • Version 24
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 09/26/2024

Send a report | Local help