|
|
|
|
|
- No next email
- Initializing the reading of emails
- Using the POP3 protocol
- Using MS Exchange
- Outlook messaging
// Read the first email EmailReadFirst(EmailID) IF Email.Out = False THEN // Displays the sender and the subject in a table TableAdd(TABLE_IncomingEmails, Email.Sender + TAB + Email.Subject) // Read the next email EmailReadNext(EmailID) END
Sintaxis
Reading the next incoming email via the POP3 or IMAP protocol Ocultar los detalles
<Result> = EmailReadNext(<Session> [, <Email>])
<Result>: Boolean - True if the message was read,
- False otherwise. If an error occurs, the ErrorOccurred variable is set to True.
To get more details on the error, use ErrorInfo with the errMessage constant. If no email is found, ErrorOccurred remains set to False and the Email.Out variable is positioned to True.
<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. Observaciones No next email If no email was found (no next message), the Email.Out variable is set to True. The next call to EmailReadNext will read the first incoming email (equivalent to EmailReadFirst). Initializing the reading of emails If the read operation was not initialized by EmailReadFirst, EmailReadNext is used to read the first message. Using the POP3 protocol When reading a message, the files attached to this message can be copied to the local disk with EmailSaveAttachment. Tip It is advisable to save messages and their attached files on the local disk and then delete them from the server. This operation is used to: - reduce the size of the mailbox on the server,
- improve and streamline communications in POP3 sessions: only new messages will be read on the server.
Clasificación Lógica de negocio / UI: Lógica de negocio
Esta página también está disponible para…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|