ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / WLanguage functions / Communication / Managing emails
  • No next email
  • Initializing the reading of emails
  • Outlook messaging
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Reads the header of the email found after the current email:
  • POP3 or IMAP protocol: the Email is stored in the mailbox on the mail server.
  • WINDEV 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.
Reminder Before reading an Email, it is necessary to open a session with the EmailStartSession, EmailStartNotesSession or EmailStartOutlookSession function.
Java The POP3 protocol can only be used to read emails.
Example
// Lecture du premier email 
EmailReadFirstHeader(IDEmail)
IF Email.Out = False THEN
	// Affiche l'expéditeur et le sujet dans un champ Table
	TableAdd(TABLE_EmailRecus, Email.Sender + TAB + Email.Subject)
	// Lecture de l'email suivant
	EmailReadNextHeader(IDEmail)
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:
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.
WINDEVUser code (UMC)

Reading the header of the next email managed via Lotus Notes or Outlook Hide the details

<Result> = EmailReadNextHeader(<Session> [, <Email> [, <Read mode>]])
<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>: 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.
<Read mode>: Optional constant or character string
Indicates the messages that will be read:
emailAll or "ALL"
(Default value)
All the messages will be read.
emailUnread or "UNREAD"Only the unread messages will be read.
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.
WINDEV

Outlook messaging

The WLanguage EmailReadxxx functions operate with the Outlook data file (.pst) only. The other data files are not supported.
Component: wd300com.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 03/27/2025

Send a report | Local help