Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(PowerBuilder) Test HotMail POP3 (pop3.live.com or pop-mail.outlook.com)Demonstrates connecting and authenticating to pop3.live.com. Make sure to enable POP3 access, as shown here:
integer li_rc oleobject loo_Mailman integer li_Success integer li_NumEmails // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. loo_Mailman = create oleobject // Use "Chilkat_9_5_0.MailMan" for versions of Chilkat < 10.0.0 li_rc = loo_Mailman.ConnectToNewObject("Chilkat.MailMan") if li_rc < 0 then destroy loo_Mailman MessageBox("Error","Connecting to COM object failed") return end if // Connection settings for pop3.live.com (or pop-mail.outlook.com, both should work) loo_Mailman.MailHost = "pop-mail.outlook.com" loo_Mailman.MailHost = "pop3.live.com" loo_Mailman.PopUsername = "my_account@live.com" loo_Mailman.PopPassword = "my_live.com_password" loo_Mailman.MailPort = 995 loo_Mailman.PopSsl = 1 // Make the TLS connection to the POP3 server. li_Success = loo_Mailman.Pop3Connect() if li_Success <> 1 then Write-Debug loo_Mailman.LastErrorText destroy loo_Mailman return end if // Authenticate.. li_Success = loo_Mailman.Pop3Authenticate() if li_Success <> 1 then Write-Debug loo_Mailman.LastErrorText destroy loo_Mailman return end if // Find out how many emails are on the server.. li_NumEmails = loo_Mailman.CheckMail() if li_NumEmails < 0 then Write-Debug loo_Mailman.LastErrorText destroy loo_Mailman return end if // Examine the POP3 session log: Write-Debug loo_Mailman.Pop3SessionLog // End the POP3 session and close the connection to the POP3 server. li_Success = loo_Mailman.Pop3EndSession() if li_Success <> 1 then Write-Debug loo_Mailman.LastErrorText destroy loo_Mailman return end if Write-Debug "-- Finished." // The output of this program: // **** Connected to pop3.live.com:995 // < +OK DUB006-POP206 POP3 server ready // > USER chilkat@live.com // < +OK password required // > PASS **** // < +OK User successfully authenticated. [AuthResult=0 Proxy=CY1PR17MB0630.namprd17.prod.outlook.com:1995:SSL] // > STAT // < +OK 46 3980488 // // -- Finished. // destroy loo_Mailman |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.