|
|
|
|
|
- The email structure and email variables
- Outlook messaging
EmailReadPreviousHeader (Function) In french: EmailLitEntêtePrécédent Reads the header of the email found before the current email: - POP3 or IMAP protocol: the e-mail 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.
The various variables of the email structure (or the variable of type Email) corresponding to the message header are filled in. 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. // Deletes the emails sent by "black-listed" senders // Browse the emails // Read the header only // (to save bandwidth) // If the email is "black-listed", delete it // Then, the "authorized" emails can be read // later on IF EmailReadLastHeader(MyPOPSession) THEN LOOP // Is the sender "black listed"? IF BlackListedSender(Email.SenderAddress) OR ... BlackListedSender(Email.Sender) THEN EmailDeleteMessage(MyPOPSession) END DO WHILE EmailReadPreviousHeader(MyPOPSession) END
Syntax
Reading the header of the previous email managed via POP3 or IMAP Hide the details
<Result> = EmailReadPreviousHeader(<Session> [, <Email>])
<Result>: Boolean - True if the message header 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. Remarks The email structure and email variables Two methods can be used to handle emails:
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|