|
|
|
|
|
<emailNotesSession variable>.NbMessage (Function) In french: <Variable emailSessionNotes>.NbMessage Returns the number of incoming messages in Notes. This number of messages evolves according to the emails received or deleted by EmailDeleteMessage. MaSession is emailNotesSession
I is int
nbMSG is int = MaSession.NbMessage()
FOR I = 1 TO nbMSG
EmailReadMessage(NomUser, I)
IF Email.Out <> True THEN
CL.NOM = Email.Sender
CL.MESSAGE_TXT = Email.Message
...
ELSE
Info("Ce message a été supprimé")
END
END
Syntax
<Result> = <Session>.NbMessage()
<Result>: Integer - Number of incoming messages found in the Notes messaging software during the call to <emailNotesSession variable>.NbMessage,
- -1 if an error occurred. To get more details on the error, use ErrorInfo.
<Session>: emailNotesSession variable Name of the emailNotesSession variable corresponding to the email session to use.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|