ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Communication / Managing emails
  • The email structure and the Email variables
  • Outlook messaging
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Reads the header of the first email received:
  • via the POP3 or IMAP protocol: the email is found in the in-box on the messaging server.
  • WINDEV via the Lotus Notes or Outlook messaging software: the incoming email is found on the local computer in the in-box of Lotus Notes or Outlook.
The different variables of email structure (or Email variable) corresponding to the message header are filled.
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 EmailStartSession, EmailStartNotesSession or EmailStartOutlookSession.
Java The POP3 protocol can only be used to read emails.
Example
// Read the first email
EmailReadFirstHeader(EmailID)
IF Email.Out = False THEN
// Displays the email in the "WIN_Email_RCV" window
Open(WIN_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:
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.
If this parameter is not specified, the Email structure is used.
Java This parameter is not available
WINDEVUser code (UMC)

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

<Result> = EmailReadFirstHeader(<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 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

The email structure and the Email variables

Two methods can be used to handle emails:
WINDEV

Outlook messaging

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

Last update: 06/21/2023

Send a report | Local help