|
|
|
|
|
- The Email structure and Email variables
- Outlook messaging
EmailReadFirstHeader (Function) In french: EmailLitEntêtePremier Reads the header of the first email received: - POP3 or IMAP protocol: the Email is stored in the mailbox on the mail server.
 via Lotus Notes or Outlook e-mail software: the email received is stored on the local workstation in the Lotus Notes or Outlook inbox.
The various variables in the Email structure (or in 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.
EmailReadFirstHeader(IDEmail)
IF Email.Out = False THEN
Open(FEN_Email_RCV)
END
Syntax
Reading the header of the first email managed by the POP3 or IMAP protocol Hide the details
<Result> = EmailReadFirstHeader(<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 The Email structure and Email variables Two methods can be used to handle emails:
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|