|
|
|
|
|
- The Email structure and Email variables
- Outlook messaging
EmailReadLastHeader (Function) In french: EmailLitEntêteDernier Reads the header of last 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 variables of the Email structure (or the properties of a variable of type Email) corresponding to the message header are specified. 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. Example with the Email structure
EmailStartPOP3Session("utilisateur", "secret", "pop.masociete.fr")
IF EmailReadLastHeader("utilisateur") THEN
LOOP
IF ExpediteurInterdit(Email.SenderAddress) OR ...
ExpediteurInterdit(Email.Sender) THEN
EmailDeleteMessage("utilisateur")
END
TO DO WHILE EmailReadPreviousHeader("utilisateur")
END
Example with an Email variable
MaSession is emailPOP3Session
MaSession.ServerAddress = "pop.masociete.fr"
MaSession.Name = "utilisateur"
MaSession.Password = "secret"
EmailStartSession(MaSession)
FOR EACH MessageEmail OF MaSession
IF ExpéditeurInterdit(MessageEmail..SenderAddress) OR ...
ExpediteurInterdit(MessageEmail..Sender) THEN
EmailDeleteMessage(MaSession, MessageEmail)
END
END
Syntax
Reading the header of last email managed by the POP3 or IMAP protocol Hide the details
<Result> = EmailReadLastHeader(<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 corresponding to the email that will 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…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|