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
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 the 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: wd300com.dll
Minimum version required
  • Version 20
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 09/23/2024

Send a report | Local help