ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Communication / Managing emails
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
Retrieves the indicators defined on an email of IMAP session.
Example
cMySession is emailIMAPSession
...
arrIndicator is array of strings
cMyEmail is Email
...
IF EmailStartSession(cMySession) THEN
IF EmailReadFirst(cMySession, cMyEmail) THEN
arrIndicator = EmailGetIndicator(cMySession, cMyEmail)
FOR EACH sIndicator OF arrIndicator
Trace(sIndicator)
END
END
END
Syntax
<Result> = EmailGetIndicator(<IMAP session> , <Email>)
<Result>: Array of character strings
Array containing all the indicators defined on the message. These indicators correspond to:
  • the list of indicators defined by the RFC (\Seen, \Answered, \Flagged, \Deleted, \Draft and \Recent),
  • the indicators defined by the client.
<IMAP session>: emailIMAPSession variable
Name of emailIMAPSession variable corresponding to the IMAP session associated with the email.
<Email>: Email variable
Name of the Email variable corresponding to the email to use.
Component: wd290com.dll
Minimum version required
  • Version 20
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/21/2023

Send a report | Local help