|
|
|
|
|
EmailGetIndicator (Function) In french: EmailRécupèreIndicateur Retrieves the indicators defined on an email of IMAP session. 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.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|