AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Funciones WLanguage / Comunicación / Gestión de correos electrónicos
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Modifies the current folder in the messaging software using the IMAP.
This folder is found in the "Personal folders" branch.
Caution: The "Generic folders" are not supported.
Example
// IMAP protocol
EDT_USER is emailIMAPSession
...
IF EmailStartIMAPSession(EDT_USER, EDT_PASSWORD, ...
"imap.mydomain.fr") = True THEN
EDT_USER.ChangeFolder("Personal folders\Inbox\Work")
...
ELSE
Error("Unable to establish the connection")
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: wd290com.dll
Versión mínima requerida
  • Versión 24
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 21/06/2023

Señalar un error o enviar una sugerencia | Ayuda local