|
|
|
|
- Example 1: Reading the first incoming email via the POP3 protocol
- Example 2: Reading the first incoming email via MS Exchange
Example 1: Reading the first incoming email via the POP3 protocol The following code is used to read the incoming emails found in the mailbox of the POP3 protocol. These emails are read from first to last and are displayed in the "TABLE_Email" control.. The characteristics of the POP3 protocol have been specified by EmailStartSession (address of the POP3 server, address of the SMTP server, etc.).
// Start the email session IF EmailStartSession(USER, PASSWORD, "pop3.ifrance.fr", ... "smtp.ifrance.fr") = True THEN UserName = USER ELSE UserName = "" Error("Unable to establish the connection") END // Populate a Table control with the messages received EmailReadFirst(UserName) WHILE Email.Out = False TableAdd(TABLE_Email_Table, Email.Sender + TAB + Email.Subject) EmailReadNext(UserName) END
Example 2: Reading the first incoming email via MS Exchange
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|