AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Este contenido se ha traducido automáticamente.  Haga clic aquí  para ver la versión en inglés.
Ayuda / WLanguage / Funciones WLanguage / Comunicación / Gestión de correos electrónicos
  • Number of messages found in the mailbox (POP3 protocol)
  • Number of messages found in the mailbox (Outlook messaging)
  • Outlook messaging
WINDEV
WindowsLinuxJavaReportes y ConsultasCódigo de Usuario (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Código Navegador
WINDEV Mobile
AndroidWidget Android iPhone/iPadIOS WidgetApple WatchMac Catalyst
Otros
Procedimientos almacenados
Reads the header of an email received:
  • POP3 or IMAP protocol: the Email is stored in the mailbox on the mail server.
  • WINDEVWEBDEV - Código Servidor 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 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.
Reminder: Before reading an email, it is necessary to start a session with one of the following functions: EmailStartSession, EmailStartNotesSession or EmailStartOutlookSession.
Java The POP3 protocol can only be used to read emails.
Ejemplo
// Use the POP3 protocol
// Read the emails whose size does not exceed MaxEmailSize
I is int
FOR I = 1 TO EmailNbMessage(UserName)
IF EmailMessageLength(UserName, I) < MaxEmailSize THEN
// Procedure for reading and processing the message
ReadMessage()
ELSE
EmailReadMessageHeader(UserName, I)
// Response procedure indicating that the email was not read
ReturnMessage(Email.SenderAddress)
END
END
WINDEVWEBDEV - Código Servidor
// Use with the Outlook messaging software
// TABLE_EmailTable table contains all the incoming emails
// COL_Sender contains the sender name (Email.Sender variable)
// COL_Subject contains the email subject (Email.Sujet variable)
// COL_ID contains the email identifier (Email.ID variable)
// Read the header of email selected in the table
EmailReadMessageHeader(SessionID, COL_ID)
Sintaxis

Reading the header of an email managed by the POP3 or IMAP protocol Ocultar los detalles

<Result> = EmailReadMessageHeader(<Session> [, <Email>] , <Message number>)
<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:
Java Variables of type emailPOP3Session and emailIMAPSession are not supported.
<Email>: Optional Email variable
Name of the Email variable to be initialized with the message content.
Java This parameter is not available
If this parameter is not specified, the Email structure is used.
<Message number>: Integer
Number of the message whose header will be read.
WINDEVWEBDEV - Código ServidorReportes y ConsultasCódigo de Usuario (UMC)Ajax

Reading the header of an email managed via Lotus Notes or Outlook Ocultar los detalles

<Result> = EmailReadMessageHeader(<Session> [, <Email>] , <Message identifier>)
<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>: Integer
Identifier of the current email session. This identifier can be:
<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.
<Message identifier>: Character string
Identifier of the message whose header must be read. This identifier is found in the Email.ID variable when reading emails.
Observaciones

Number of messages found in the mailbox (POP3 protocol)

You can get the total number of messages received with EmailNbMessage.
If a message was deleted by EmailDeleteMessage in the same email session:
  • EmailNbMessage returns the number of messages found on the email server before the deletion.
  • the numbers of the deleted messages are not re-assigned.
For example: At the time of connection, four messages are on the server and these messages are numbered from 1 to 4. If message #1 is deleted:
  • EmailNbMessage returns 4.
  • Reading message 1 with the EmailReadMessage function or the EmailReadMessageHeader FUNCTION is impossible: the message no longer exists. The Email.Out variable returns True. Only the messages 2, 3, and 4 exist.
The message numbers are re-assigned during the next connection.
WINDEVWEBDEV - Código Servidor

Number of messages found in the mailbox (Outlook messaging)

The total number of received messages is returned by EmailNbMessage.
If a message was deleted by EmailDeleteMessage in the same email session, EmailNbMessage returns the actual number of messages in the inbox folder.
WINDEVWEBDEV - Código Servidor

Outlook messaging

The WLanguage EmailReadxxx functions operate with the Outlook data file (.pst) only. The other data files are not supported.
Componente: wd300com.dll
Versión mínima requerida
  • Versión 9
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 27/03/2025

Señalar un error o enviar una sugerencia | Ayuda local