|
|
|
|
|
- Number of messages found in the mailbox (POP3 protocol)
- Number of messages found in the mailbox (Outlook messaging)
- The attached files
- Progress Bar
- Outlook messaging
EmailReadMessage (Function) In french: EmailLitMessage Reads an email received: - POP3 OR IMAP protocol: the email is stored in the mailbox on the mail server.
 or via Lotus Notes or Outlook e-mail software: the e-mail received is present on the local workstation in the Lotus Notes or Outlook inbox.
This function does not modify the current position. The variables of the email structure (or Email variable) are filled. The Email.Out variable is set to True if no email is found.
I is int
nbMSG is int = EmailNbMessage(UserName)
FOR I = 1 TO nbMSG
IF EmailReadMessage(UserName, I) = True THEN
IF Email.Out <> True THEN
CU.NAME = Email.Sender
CU.MESSAGE_TXT = Email.Message
...
ELSE
Info("This message was deleted")
END
END
END
Syntax
Reading an email managed by the POP3 or IMAP protocol Hide the details
<Result> = EmailReadMessage(<Session> [, <Email>] , <Message number>)
<Result>: Boolean - True if the message was read. In this case, the email structure is automatically updated.
- False otherwise. To get more details on the error, use ErrorInfo with the errMessage constant.
The Email.Out variable is set to True if no message was found (no email).
<Session>: Character string, or emailPOP3Session or emailIMAPSession variable Identifies the user session. Corresponds to: <Email>: Optional Email variable Name of the Email variable to be initialized with the message content. If this parameter is not specified, the Email structure is used. <Message number>: Integer - Index of message to read in POP3
- Identifier (UID) of the message in IMAP.
Remarks Number of messages found in the mailbox (POP3 protocol) - EmailNbMessage returns the number of messages found on the email server before the deletion.
- the numbers of the deleted messages are not re-assigned.
For example: At the time of connection, four messages are on the server. These messages are numbered from 1 to 4. If message #1 is deleted: - EmailNbMessage returns 4.
- Reading message 1 with the EmailReadMessage is impossible: the message no longer exists. The Email.Out variable returns True. Only the messages 2, 3, and 4 exist.
The message numbers are re-assigned during the next connection. The attached files When reading a message, the attached files can be copied to the local disk (or to the server disk) using EmailSaveAttachment. Tip It is advisable to save messages and their attached files on the local disk (or on the server disk) and then delete them from the e-mail server. This operation is used to: - reduce the size of the mailbox on the server,
- improve and streamline communications on POP3 servers: only new messages will be read on the server.
Business / UI classification: Business Logic
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|