|
|
|
|
- No next email
- Initializing the reading of emails
- Outlook messaging
EmailReadNextHeader (Function) In french: EmailLitEntêteSuivant Reads the header of the email found after the current email: - via the POP3 or IMAP protocol: the email is found in the in-box on the messaging server.
 via the Lotus Notes or Outlook messaging software: the incoming email is found on the local computer in the in-box of Lotus Notes or Outlook.
The different variables of email structure (or Email variable) corresponding to the message header are filled. This function is useful when reading the email is linked to the message size for example. The Email.Out variable is set to True if no email is found.
// Read the first email EmailReadFirstHeader(EmailID) IF Email.Out = False THEN // Displays the sender and subject in a Table control TableAdd(TABLE_IncomingEmails, Email.Sender + TAB + Email.Subject) // Read the next email EmailReadNextHeader(EmailID) END
Syntax
Reading the header of next email managed by the POP3 or IMAP protocol Hide the details
<Result> = EmailReadNextHeader(<Session> [, <Email>])
<Result>: Boolean - True if the message header was read,
- False otherwise. To get more details on the error, use ErrorInfo with the errMessage constant.
<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. Remarks No next email If no email was found (no next message), the Email.Out variable is set to True. The next call to EmailReadNextHeader will read the header of first incoming message (equivalent to EmailReadFirstHeader). Initializing the reading of emails If the reading was not initialized by EmailReadFirstHeader, EmailReadNextHeader is used to read the header of first message.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|