ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
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
Deletes a folder from the Outlook messaging software or from an IMAP server.
Example
// IMAP protocol
MySession is emailIMAPSession
...
// Delete a folder from the current folder
EmailRemoveFolder(MySession, EmailCurrentFolder(MySession) + "\Work")
 
// Delete a folder from the custom folder
EmailRemoveFolder(MySession, "Personal folders\Inbox\MyOwnWork")
Syntax
<Result> = EmailRemoveFolder(<Session> , <Folder path>)
<Result>: Boolean
  • True if deleted successfully,
  • 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 delete.
Remarks
Component: wd300com.dll
Minimum version required
  • Version 11
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 09/30/2024

Send a report | Local help