ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Communication / Managing emails
  • The email structure and the Email variables
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 last email received:
  • via the POP3 or IMAP protocol: the email is found in the in-box on the messaging server.
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.
Reminder: Before reading an email, it is necessary to open a session with EmailStartSession, EmailStartNotesSession or EmailStartOutlookSession.
Example
Example with the Email structure
// Deletes the emails sent by "black-listed" senders
 
EmailStartPOP3Session("user", "secret", "pop.mycompany.fr")
 
// Browse the emails
// Read the header only
IF EmailReadLastHeader("user") THEN
LOOP
// Does the sender belong to
// a "black list"?
IF BlackListedSender(Email.SenderAddress) OR ...
BlackListedSender(Email.Sender) THEN
// If the email is "black-listed", delete it
// Then, the "authorized" emails can
// be entirely read later
EmailDeleteMessage("user")
END
DO WHILE EmailReadPreviousHeader("user")
END
Example with an Email variable
// Deletes the emails sent by "black-listed" senders
 
MySession is emailPOP3Session
MySession.ServerAddress = "pop.mycompany.us"
MySession.Name = "user"
MySession.Password = "secret"
EmailStartSession(MySession)
 
// Browse the emails
FOR EACH EmailMessage OF MySession
// Does the sender belong to
// a "black list"?
IF BlackListedSender(EmailMessage..SenderAddress) OR ...
BlackListedSender(EmailMessage..Sender) THEN
// If the email is "black-listed", delete it
// Then, the "authorized" emails can
// be entirely read later
EmailDeleteMessage(MySession, EmailMessage)
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 positioned 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.
Reports and Queries

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

<Result> = EmailReadLastHeader(<Session> [, <Email> [, <Read mode>]])
<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 positioned to True if no message was found (no email).
<Session>: Integer
Identifier of current email session. This identifier can be:
<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.
<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:
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